xiangpei
2024-03-15 4f39d2d3ee69813f106e06fc8a8d168ecccc941c
src/views/exam/gradeDetails/list.vue
@@ -36,7 +36,7 @@
import { mapGetters, mapState, mapActions } from 'vuex'
import Pagination from '@/components/Pagination'
import examPaperApi from '@/api/examPaper'
import AchievementStatistics from "@/api/AchievementStatistics";
import AchievementStatistics from '@/api/AchievementStatistics'
export default {
  components: { Pagination },
@@ -45,22 +45,26 @@
      queryParam: {
        pageIndex: 1,
        pageSize: 10,
        id:'',
        userId:''
        start: null,
        end: null,
        id: '',
        userId: ''
      },
      subjectFilter: null,
      listLoading: true,
      tableData: [],
      total: 0,
      total: 0
    }
  },
  created () {
  },
  mounted () {
    this.queryParam.id=this.$route.query.id
    this.queryParam.userId=this.$route.query.userId
    this.queryParam.createUser=this.$route.query.createUser
    this.queryParam.id = this.$route.query.id
    this.queryParam.userId = this.$route.query.userId
    this.queryParam.createUser = this.$route.query.createUser
    this.queryParam.start = this.$route.query.start
    this.queryParam.end = this.$route.query.end
    this.search()
  },
  methods: {
@@ -77,9 +81,9 @@
        this.queryParam.pageIndex = re.pageNum
        this.listLoading = false
      })
    },
    }
  },
  }
}
</script>