| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <el-main>
- </el-main>
- </template>
- <script>
- export default {
- name: 'ExamMarker',
- data() {
- return {
- // 屏幕宽度, 为了控制分页条的大小
- screenWidth: document.body.clientWidth,
- currentPage: 1,
- pageSize: 20,
- totalSize: 0,
- dataList: [],
- // **********************************************************************
- searchForm: {
- page: 1,
- type: '1',
- content: null
- },
- // 开始考试的提示框
- startExamDialog: false,
- // 当前选中的考试的信息
- currentSelectedExam: {
- examId: 114511
- }
- }
- },
- created() {
- document.title = '阅卷'
- this.getData(this.searchForm)
- },
- methods: {
- handleCurrentChange(pageNumber) {
- this.currentPage = pageNumber
- this.getData(this.searchForm)
- // 回到顶部
- scrollTo(0, 0)
- },
- getData(searchForm) {
- this.dataList = []
- }
- }
- }
- </script>
- <style>
- </style>
|