1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
| <template>
| <div class="list-container w-full h-full">
| <el-scrollbar>
| <el-table
| v-loading="loading"
| :data="dataList"
| border
| :row-style="{height:'42px'}"
| :cell-style="{padding: '0'}"
| >
| <el-table-column
| align="center"
| label="题目"
| prop="title"
| width="500px"
| ></el-table-column>
| <el-table-column
| label="题型"
| align="center"
| width="100px"
| prop="questionType"
| :formatter="questionTypeFormatter"
| ></el-table-column>
| <el-table-column
| align="center"
| width="100px"
| label="分数"
| prop="score"
| ></el-table-column>
| <el-table-column
| align="center"
| width="100px"
| label="难度"
| prop="difficult"
| ></el-table-column>
| <el-table-column
| align="center"
| width="150px"
| label="试卷名称"
| prop="examName"
| ></el-table-column>
| <el-table-column
| label="操作"
| align="center"
| fixed="right"
| >
| <template slot-scope="scope">
| <el-button type="primary" size="large" @click="checkWrong(scope.row.id)">查看错题</el-button>
| </template>
| </el-table-column>
| </el-table>
| </el-scrollbar>
| </div>
| </template>
|
| <script setup>
| import { ref } from 'vue';
|
| // dataList
| const props = defineProps({
| dataList: {
| type: Array,
| default: () => []
| }
| });
| const loading = ref(false);
|
| const checkWrong = (id) => {
| router.push({
| name: 'wrong-list',
| params: {
| examId: id
| }
| });
| };
|
| // 题目类型格式化
| const questionTypeFormatter = (row,column,cellValue) => {
| const typeMap = {
| 1: '单选题',
| 2: '多选题',
| 3: '判断题',
| 4: '填空题',
| 5: '简答题',
| 6: '语音题',
| 7: '计算题',
| 8: '分析题'
| };
| return typeMap[cellValue];
| }
|
| </script>
| <style lang="scss" scoped>
| .item {
| width: 100%;
| min-height: 120px;
| }
|
| .bottom-item {
| margin-right: 30px;
| }
| </style>
|
|