079cb4cf
梁保满
即时测导出
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<template>
<div ref="main" class="page-container">
<back-box v-show="!isDetail">
<template slot="title">
<span>即时测-数据报表</span>
</template>
<template slot="btns">
<el-tooltip v-if="!code && gdClass" effect="dark" content="已归档试卷" placement="bottom">
<el-button type="primary" icon="fa fa-archive" size="mini" plain circle @click="toArchiving"></el-button>
</el-tooltip>
</template>
</back-box>
<div v-show="!isDetail" class="table-box" v-loading="loading">
<div v-if="!isMultipleClass">
<p class="btn-box">
<el-button type="primary" round @click="linkToDetail2">查看汇总报表</el-button>
</p>
<el-table :data="tableData" :max-height="tableMaxHeight" border style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="40"></el-table-column>
<el-table-column prop="subjectName" label="科目" align="center"></el-table-column>
<el-table-column prop="className" label="班级" align="center"></el-table-column>
<el-table-column prop="title" label="试卷名称" align="center"></el-table-column>
|
22095aba
梁保满
接口联调
|
24
|
<el-table-column prop="examPaperScore" label="卷面分" align="center"></el-table-column>
|
079cb4cf
梁保满
即时测导出
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<el-table-column label="测验人数/班级人数" align="center">
<template slot-scope="scoped">{{ `${scoped.row.answeredNum}/${scoped.row.classPersonNum}` }}</template>
</el-table-column>
<el-table-column prop="examStartTime" label="测验开始时间" align="center"></el-table-column>
<el-table-column label="操作" align="center">
<template slot-scope="scoped">
<el-tooltip v-if="scoped.row.answerNum != 0 || scoped.row.recordStatus != 0
" effect="dark" content="详情" placement="top">
<el-button type="primary" circle size="mini" icon="fa fa-arrow-right"
@click="linkTo(scoped.row)"></el-button>
</el-tooltip>
<template v-if="scoped.row.answerNum == 0">
<el-tooltip v-if="role != 'ROLE_BANZHUREN'" effect="dark" content="设置答案" placement="top">
<el-button type="primary" circle size="mini" icon="fa fa-file-text"
@click="edit(scoped.row)"></el-button>
</el-tooltip>
<template v-else>未设置答案</template>
</template>
<!-- <el-tooltip v-else effect="dark" content="答卷录分" placement="top">
<el-button type="primary" circle size="mini" @click="openScoreSet(scoped.row)">分</el-button>
</el-tooltip> -->
|
22095aba
梁保满
接口联调
|
46
|
<el-tooltip v-else effect="dark" content="答卷录分" placement="top">
|
079cb4cf
梁保满
即时测导出
|
47
48
|
<el-button type="primary" circle size="mini" @click="openScoreSet(scoped.row)">分</el-button>
</el-tooltip>
|
e43b294b
梁保满
导出逻辑
|
49
50
51
52
|
<el-tooltip effect="dark" content="删除" placement="top">
<el-button type="primary" circle size="mini" icon="el-icon-delete"
@click="remove(scoped.row)"></el-button>·
</el-tooltip>
|
079cb4cf
梁保满
即时测导出
|
53
54
55
56
57
58
59
60
|
</template>
</el-table-column>
</el-table>
<div class="pagination-box">
<el-pagination small="" layout="total,prev, pager, next" :hide-on-single-page="true" :total="total"
@current-change="changePage" :current-page="page" :page-size="size">
</el-pagination>
</div>
|
77da338a
梁保满
自测问题修改
|
61
62
|
<ScoreSet v-show="diaScoreSet" :diaScoreSet="diaScoreSet" :role="role" :id="examId" :title="examTitlt"
:examScore="examScore" @closeScoreSet="closeScoreSet" />
|
079cb4cf
梁保满
即时测导出
|
63
64
65
66
67
|
</div>
<div v-else>
<el-table :data="tableData" :max-height="tableMaxHeight" border style="width: 100%">
<el-table-column prop="subjectName" label="科目" align="center"></el-table-column>
<el-table-column prop="classList" label="班级" align="center">
|
22095aba
梁保满
接口联调
|
68
|
<template slot-scope="scoped">
|
7812e986
梁保满
班主任查看报表添加额外信息
|
69
|
<span v-for="(item, index) in scoped.row.classNames">{{ `${index == 0 ? '' : '/'}` + item }}</span>
|
22095aba
梁保满
接口联调
|
70
|
</template>
|
079cb4cf
梁保满
即时测导出
|
71
72
|
</el-table-column>
<el-table-column prop="title" label="试卷名称" align="center"></el-table-column>
|
7812e986
梁保满
班主任查看报表添加额外信息
|
73
|
<el-table-column prop="examPaperScore" label="卷面分" align="center"></el-table-column>
|
079cb4cf
梁保满
即时测导出
|
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
<el-table-column label="操作" align="center">
<template slot-scope="scoped">
<el-button type="primary" circle size="mini" icon="el-icon-arrow-right"
@click="linkContrast(scoped.row)"></el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination-box">
<el-pagination small="" layout="total,prev, pager, next" :hide-on-single-page="true" :total="total"
@current-change="changePage" :current-page="page" :page-size="size">
</el-pagination>
</div>
</div>
</div>
<router-view v-show="isDetail"></router-view>
</div>
</template>
<script>
import ScoreSet from "./components/scoreSet.vue"
export default {
components: {
ScoreSet
},
data() {
return {
code: "",
gdClass: 0, //已归档班级数量
tableMaxHeight: null,
role: "",
loading: false,
diaScoreSet: false,
examId: "",//当前操作试卷
examTitlt: "",//当前操作试卷名称
examScore: 0,//当前操作试卷卷面总分
query: {
//搜索条件
classId: [],
subjectNames: [],
startDay: "",
endDay: "",
},
multipleSelection: [],
tableData: [],
page: 1,
size: 20,
total: 0,
isMultipleClass: false,
};
},
computed: {
isDetail: function () {
let bol = (this.$route.name == "即时测报表分析") ? true : false
return bol
}
},
async created() {
|
7812e986
梁保满
班主任查看报表添加额外信息
|
131
|
this.code = this.$store.getters.csCode;
|
079cb4cf
梁保满
即时测导出
|
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
this.init()
},
mounted() {
this.tableMaxHeight = this.$refs.main.offsetHeight;
},
watch: {
"$route.query.params": function (nVal) {
let isFromTestDetail = sessionStorage.getItem("isFromTestDetail");
if (!isFromTestDetail && nVal) {
this.init()
}
}
},
methods: {
//初始化
init() {
const queryData = this.$route.query.params
queryData ? this.query = { ...this.query, ...JSON.parse(queryData) } : ''
console.log(this.query)
|
7812e986
梁保满
班主任查看报表添加额外信息
|
151
|
this.$store.commit('setClasses', this.query.classId.join(','))
|
079cb4cf
梁保满
即时测导出
|
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
if (this.query.classId.length > 1) {
this.isMultipleClass = true
}
this.role =
this.$store.getters.info.showRole ||
this.$store.getters.info.permissions[0].role;
if (this.role != "ROLE_PERSONAL") {
this._QueryGdClass()
}
this.page = 1
this.total = 0
this.tableData = []
this._QueryData()
},
//归档列表
toArchiving() {
this.$router.push({
path: "/testArchiving",
});
},
//跳转单卷分析
linkTo(obj) {
//去详情
this.$router.push({
path: "/testAnalysis",
query: {
id: obj.id,
title: obj.title,
score: obj.examPaperScore || 0,
type: 1,
|
22095aba
梁保满
接口联调
|
182
183
184
|
subjectName: obj.subjectName,
classId: this.query.classId[0],
params: this.$route.query.params
|
079cb4cf
梁保满
即时测导出
|
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
},
});
},
//汇总跳转-多卷
linkToDetail2() {
if (this.multipleSelection.length == 0) {
this.$message.warning("请选择试卷!")
return
};
let subjectArr = []
const ids = this.multipleSelection.map(item => {
subjectArr.push(item.subjectName)
return item.id
})
subjectArr = [...new Set(subjectArr)]
console.log(subjectArr)
if (ids.length == 1) {
this.$router.push({
path: "/testAnalysis",
query: {
id: ids[0],
title: this.multipleSelection[0].title,
score: this.multipleSelection[0].examPaperScore || 0,
type: 1,
|
22095aba
梁保满
接口联调
|
209
210
211
|
subjectName: subjectArr.join(),
classId: this.query.classId[0],
params: this.$route.query.params
|
079cb4cf
梁保满
即时测导出
|
212
213
214
215
216
217
218
219
220
221
|
},
});
} else {
//去详情
this.$router.push({
path: "/testAnalysis",
query: {
ids: ids.join(),
classId: this.query.classId[0],
type: subjectArr.length == 1 ? 2 : 3,
|
22095aba
梁保满
接口联调
|
222
223
|
subjectName: subjectArr.join(),
params: this.$route.query.params
|
079cb4cf
梁保满
即时测导出
|
224
225
226
227
228
229
|
},
});
}
},
// 多班对比
linkContrast(obj) {
|
7812e986
梁保满
班主任查看报表添加额外信息
|
230
|
console.log(obj)
|
079cb4cf
梁保满
即时测导出
|
231
232
233
|
this.$router.push({
path: "/testAnalysis",
query: {
|
7812e986
梁保满
班主任查看报表添加额外信息
|
234
235
|
ids: obj.ids.join(','),
classId: obj.classIds.join(','),
|
079cb4cf
梁保满
即时测导出
|
236
237
|
subjectName: obj.subjectName,
title: obj.title,
|
049db2b2
梁保满
接口联调
|
238
239
|
type: 4,
params: this.$route.query.params
|
079cb4cf
梁保满
即时测导出
|
240
241
242
243
244
245
246
247
|
},
});
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
//打开答卷录分
openScoreSet(obj) {
|
77da338a
梁保满
自测问题修改
|
248
|
this.examId = String(obj.id);
|
079cb4cf
梁保满
即时测导出
|
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
this.examTitlt = obj.title;
this.examScore = obj.examScore;
this.diaScoreSet = true;
},
//关闭设置分数
closeScoreSet() {
this.diaScoreSet = false
},
//修改答案
edit(item) {
this.$router.push({
path: "/examinationPaperEdit",
query: {
paperId: item.id,
title: item.title,
type: 2,
},
});
},
async _QueryGdClass() {
const fetchClassList =
this.role == "ROLE_BANZHUREN"
? this.$request.cTClassList
: this.$request.tClassList;
const { data, status, info } = await fetchClassList({ status: 1 });
if (status === 0) {
this.gdClass = data?.list?.length || 0;
} else {
this.$message.error(info);
}
},
changePage(page) {
this.page = page;
this._QueryData();
},
async _QueryData() {
this.loading = true;
let query = {};
for (let key in this.query) {
if (this.query[key] != "") {
|
22095aba
梁保满
接口联调
|
290
|
if (key == 'classId') {
|
7812e986
梁保满
班主任查看报表添加额外信息
|
291
|
if (this.query.classId?.length == 1) {
|
22095aba
梁保满
接口联调
|
292
293
294
295
296
297
298
|
query.classId = this.query[key][0]
} else {
query.classIds = [...this.query[key]]
}
} else {
query[key] = this.query[key];
}
|
079cb4cf
梁保满
即时测导出
|
299
300
301
302
303
304
305
306
307
308
309
|
}
}
const examReportList = this.role == "ROLE_PERSONAL" ?
this.$request.pExamReportList : this.$request.examReportList
const { data, status, info } = await examReportList({
...query,
page: this.page,
size: this.size,
});
this.loading = false;
if (status === 0) {
|
7812e986
梁保满
班主任查看报表添加额外信息
|
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
|
if (this.query.classId.length > 1) {
//多班级
let tableObj = {};
data?.list?.map((item) => {
if (tableObj[item.examPaperId]) {
tableObj[item.examPaperId].ids.push(item.id)
tableObj[item.examPaperId].classIds.push(item.classId)
tableObj[item.examPaperId].classNames.push(item.className)
} else {
tableObj[item.examPaperId] = {
ids: [item.id],
examPaperId: item.examPaperId,
classIds: [item.classId],
classNames: [item.className],
title: item.title,
examPaperScore: item.examPaperScore,
subjectName: item.subjectName
}
}
});
Object.keys(tableObj).map(keys => {
if (tableObj[keys].classIds.length > 1) {
this.tableData.push(tableObj[keys])
}
})
} else {
this.tableData = (data?.list && [...data?.list]) || [];
this.total = data?.count || 0;
}
|
079cb4cf
梁保满
即时测导出
|
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
} else {
this.$message.error(info);
}
},
},
};
</script>
<style>
div::-webkit-scrollbar {
width: 3px;
height: 10px;
}
div::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #ccc;
}
</style>
<style lang="scss" scoped>
.page-container {
position: relative;
height: 100%;
&.active {
overflow: hidden;
}
}
.table-box {
margin: 20px;
border-radius: 5px;
:deep(.fa-arrow-right) {
padding-left: 2px;
}
:deep(.fa-file-text) {
padding-left: 2px;
}
}
.down {
padding-top: 16px;
}
.click-b {
cursor: pointer;
color: #409eff;
text-decoration: underline;
}
.btn-box {
text-align: right;
padding: 0 12px 16px;
}
</style>
|