| | |
| | | <el-table-column prop="counts" label="考试次数" width="160px"/> |
| | | <el-table-column label="操作" align="center" width="300px"> |
| | | <template slot-scope="{row}"> |
| | | <el-button size="mini" @click="$router.push({path:'/answer/achievementStatistics/gradeDetails',query:{id:row.id,userId:row.userId,createUser:row.createUser}})" >查看</el-button> |
| | | <el-button size="mini" |
| | | @click="$router.push({path:'/answer/achievementStatistics/gradeDetails',query:{id:row.id, userId:row.userId, createUser:row.createUser, start:queryParam.start, end: queryParam.end}})" > |
| | | 查看</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | 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 }, |
| | |
| | | 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: { |
| | |
| | | this.queryParam.pageIndex = re.pageNum |
| | | this.listLoading = false |
| | | }) |
| | | }, |
| | | } |
| | | |
| | | }, |
| | | } |
| | | |
| | | } |
| | | </script> |