4c4f7640
梁保满
路由表,路由前端文件
|
1
2
|
<template>
<div>
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
3
4
|
<back-box>
<template slot="title">
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
5
6
7
|
<span>备题组卷</span>
</template>
<template slot="btns">
|
65f592b6
梁保满
答题卡列表页
|
8
9
10
11
12
13
|
<el-tooltip effect="dark" content="创建答题卡" placement="left">
<el-button
type="primary"
icon="el-icon-plus"
plain
circle
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
14
|
@click="toAdd({})"
|
65f592b6
梁保满
答题卡列表页
|
15
16
|
></el-button>
</el-tooltip>
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
17
18
|
</template>
</back-box>
|
65f592b6
梁保满
答题卡列表页
|
19
20
21
|
<div class="answer-header">
<div class="sel-box">
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<el-cascader
class="sel sel2"
:options="options"
:props="props"
collapse-tags
clearable
placeholder="选择年级-班级"
v-model="query.gradeClass"
@change="changeGrade"
><template slot-scope="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template></el-cascader
|
65f592b6
梁保满
答题卡列表页
|
35
|
>
|
65f592b6
梁保满
答题卡列表页
|
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
|
<el-select
class="sel"
v-model="query.subjectId"
placeholder="选择科目"
@change="_QueryData()"
>
<el-option
v-for="item in subjectList"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-select
class="sel"
v-model="query.typeName"
placeholder="选择类型"
@change="_QueryData()"
>
<el-option
v-for="item in typeList"
:key="item"
:label="item"
:value="item"
>{{ item }}
</el-option>
</el-select>
<el-input
placeholder="试卷名称"
v-model="query.title"
class="input-with-select"
@keyup.enter.native="_QueryData(true)"
>
<el-button
slot="append"
icon="el-icon-search"
@click="_QueryData(true)"
></el-button>
</el-input>
</div>
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
77
|
</div>
|
65f592b6
梁保满
答题卡列表页
|
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
131
132
133
134
135
136
|
<p class="tips">
<span>另有25份已经归档的答题卡,</span>
<router-link to="/examinationPaperRecycle">点击查看>></router-link>
</p>
<ul class="content">
<li class="item" v-for="item in tableData" :key="item.id">
<div class="pic-box">
<p class="i-box"><i class="fa fa-map-o"></i></p>
<p class="ids">{{ item.id }}</p>
</div>
<div class="info">
<p class="title">
{{ item.title }} <span class="label">{{ item.typeName }}</span>
</p>
<p class="num">
总题数:{{ item.answerNum }}
<em class="s-line">|</em>
预计时长:{{ item.time }}
<em class="s-line">|</em>
授课端同步:
<span
class="clazz"
v-for="(clazzChild, indexs) in item.aboutClazz"
:key="clazzChild"
>{{
`${clazzChild}班${
indexs != item.aboutClazz.length - 1 ? "、" : ""
}`
}}
<i class="el-icon-success"></i
></span>
</p>
<p class="person">
{{ item.teacher }}<em class="s-line">|</em
><span class="date">{{ item.date }}</span>
</p>
</div>
<div class="btn-box">
<el-tooltip effect="dark" content="修改答案" placement="bottom">
<el-button
class="edit"
type="primary"
size="mini"
circle
icon="el-icon-edit"
@click="toEdit(item)"
></el-button>
</el-tooltip>
<el-dropdown
trigger="click"
@command="handleDropdownClick($event, item)"
>
<el-button
type="info"
size="mini"
circle
icon="el-icon-more"
></el-button>
<el-dropdown-menu slot="dropdown">
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
137
138
139
|
<el-dropdown-item :command="1" v-if="this.$store.info.id == item.id">修改分享范围</el-dropdown-item>
<el-dropdown-item :command="2">复制</el-dropdown-item>
<el-dropdown-item :command="3">归档</el-dropdown-item>
|
65f592b6
梁保满
答题卡列表页
|
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
</el-dropdown-menu>
</el-dropdown>
</div>
</li>
</ul>
<el-dialog title="选择分享范围" :visible.sync="dialogVisible" width="400">
<el-form :model="shareForm" :rules="shareRulesForm" label-width="160px">
<el-form-item label="适用年级:">
<el-col :span="11">
<el-input v-model="shareForm.grade"></el-input>
</el-col>
</el-form-item>
<el-form-item prop="share" label="分享范围:">
<el-radio-group v-model="shareForm.share">
<el-radio :label="1">任课班级分享</el-radio>
<el-radio :label="2">全年级分享</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="saveShare">确 定</el-button>
<el-button @click="dialogVisible = false">取 消</el-button>
</div>
</el-dialog>
|
4c4f7640
梁保满
路由表,路由前端文件
|
164
165
166
167
168
|
</div>
</template>
<script>
export default {
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
169
|
name: "examinationPaper",
|
65f592b6
梁保满
答题卡列表页
|
170
171
|
data() {
return {
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
props: { multiple: true, checkStrictly: true },
options: [
{
value: 1,
label: "一年级",
children: [
{
value: 2,
label: "二班",
},
{
value: 3,
label: "三班",
},
],
},
{
value: 4,
label: "二年级",
children: [
{
value: 5,
label: "二班",
},
{
value: 6,
label: "三班",
},
],
},
],
|
65f592b6
梁保满
答题卡列表页
|
203
204
|
dialogVisible: false,
query: {
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
205
|
gradeClass: [],
|
65f592b6
梁保满
答题卡列表页
|
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
subjectId: "0",
typeName: "周测",
title: "",
},
classList: [
{
label: "2003班",
value: "2003",
},
],
subjectList: [
{
label: "语文",
value: "0",
},
],
typeList: ["周测"],
tableData: [
{
title: "数学样例试卷202211-324654",
id: "1062837",
typeName: "周测",
answerNum: 45,
time: 90,
aboutClazz: [203, 204],
teacher: "张老师",
date: "2022-11-04 18:09:49",
share: 1,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
234
|
score: 100,
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
235
236
237
|
gradeName: "二年级",
subjectId: 1,
examsDuration: 4800,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
questionList: [
{
questionTitle: "f",
score: 1,
subQuestions: [
{
questionIndex: 1,
questionType: 2,
score: 1,
partScore: 0,
selectNum: 4,
answerOptions: ["A", "B", "C", "D"],
correctAnswer: "B",
},
],
},
],
|
65f592b6
梁保满
答题卡列表页
|
255
256
257
258
259
260
261
262
263
264
265
|
},
{
title: "数学样例试卷202211-4180949",
id: "1062838",
typeName: "周测",
answerNum: 45,
time: 90,
aboutClazz: [203, 204],
teacher: "张老师",
date: "2022-11-04 18:09:49",
share: 1,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
266
|
score: 100,
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
267
268
269
|
gradeName: "二年级",
subjectId: 1,
examsDuration: 3000,
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
questionList: [
{
questionTitle: "f",
score: 1,
subQuestions: [
{
questionIndex: 2,
questionType: 3,
score: 1,
partScore: 0,
selectNum: 4,
answerOptions: ["A", "B", "C", "D"],
correctAnswer: "A,C",
},
],
},
],
|
65f592b6
梁保满
答题卡列表页
|
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
},
],
shareForm: {
id: "",
grade: "",
share: 1,
},
shareRulesForm: {
share: [{ required: true, message: "选择分享范围", trigger: "blur" }],
},
};
},
methods: {
toAdd(query) {
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
301
|
let routerItem = {
|
65f592b6
梁保满
答题卡列表页
|
302
|
path: "/examinationPaperAdd",
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
303
304
305
|
};
query ? (routerItem["query"] = { ...query }) : "";
this.$router.push(routerItem);
|
65f592b6
梁保满
答题卡列表页
|
306
307
308
309
310
|
},
toEdit(item) {
this.$router.push({
path: "/examinationPaperEdit",
query: {
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
311
|
form: JSON.stringify(item),
|
65f592b6
梁保满
答题卡列表页
|
312
313
314
|
},
});
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
315
316
|
handleDropdownClick(value, item) {
//更多
|
65f592b6
梁保满
答题卡列表页
|
317
318
319
|
const that = this;
switch (value) {
case 1:
|
65f592b6
梁保满
答题卡列表页
|
320
321
322
323
324
325
|
//修改分享范围
that.shareForm.id = item.id;
that.shareForm.grade = item.grade;
that.shareForm.share = item.share || 1;
that.dialogVisible = true;
break;
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
326
|
case 2:
|
65f592b6
梁保满
答题卡列表页
|
327
|
//复制
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
328
|
that.toAdd({ type: 2, form: JSON.stringify(item) });
|
65f592b6
梁保满
答题卡列表页
|
329
|
break;
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
330
|
case 3:
|
65f592b6
梁保满
答题卡列表页
|
331
|
//归档
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
332
|
that.recovery(item);
|
65f592b6
梁保满
答题卡列表页
|
333
334
335
|
break;
}
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
336
337
|
async saveShare() {
//修改分享范围
|
65f592b6
梁保满
答题卡列表页
|
338
339
340
341
342
343
344
345
346
347
348
349
350
|
// const { data, code, message } = await this.$request.fetchAnswerList({
// ...this.shareForm,
// });
// this.loading = false;
// if (code === 0) {
this.shareForm.id = "";
this.shareForm.grade = "";
this.shareForm.share = 1;
dialogVisible = false;
// } else {
// this.$message.error(message);
// }
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
351
352
|
async recovery(item) {
//归档
|
65f592b6
梁保满
答题卡列表页
|
353
354
355
356
|
// const { data, code, message } = await this.$request.fetchAnswerList({
// ...this.shareForm,
// });
// if (code === 0) {
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
357
358
359
|
this.tableData = this.tableData.filter((items) => {
return items.id != item.id;
});
|
65f592b6
梁保满
答题卡列表页
|
360
361
362
363
|
// } else {
// this.$message.error(message);
// }
},
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
364
|
async changeGrade() {
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
365
|
//切换班级
|
65f592b6
梁保满
答题卡列表页
|
366
367
368
|
await this._QuerySubjectList();
this._QueryData();
},
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
369
|
async changClazz() {},
|
65f592b6
梁保满
答题卡列表页
|
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
// 查找答题卡类型
async _QueryTypeList() {
const { data, code, message } = await this.$request.fetchTypeNames();
if (code === 0) {
this.typeList = [...data.typeNames] || [];
} else {
this.$message.error(message);
}
},
// 查找班级
async _QueryClassList() {
const { data, code, message } = await this.$request.fetchClassList();
if (code === 0) {
if (!!data.list) {
this.classList = data.list.map((item) => {
return {
value: item.clazzId,
label: item.clazzName,
};
});
this.query.clazzId = this.classList[0]?.value;
}
} else {
this.$message.error(message);
}
},
// 查找科目
async _QuerySubjectList() {
const { data, code, message } = await this.$request.fetchSubjectList({
clazzId: this.query.clazzId,
});
if (code === 0) {
this.subjectList = data.list.map((item) => {
return {
value: item.subjectId,
label: item.subjectName,
};
});
this.query.clazzId = this.subjectList[0]?.value;
} else {
this.$message.error(message);
}
},
|
13b58a42
梁保满
备题组卷部分前端页面基本完成
|
413
414
|
async _QueryData(type) {
//获取答题卡列表
|
65f592b6
梁保满
答题卡列表页
|
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
|
let query = {};
if (!type) {
this.query.title = "";
query = { ...this.query };
} else {
query = { title: this.query.title };
this.query.typeName = "";
this.query.subjectId = "";
}
query.clazzId = this.query.clazzId;
for (let key in query) {
if (!query[key]) {
query[key] = null;
}
}
if (!query.clazzId) {
this.total = 0;
this.tableData = [];
this.loading = false;
return;
}
this.loading = true;
const { data, code, message } = await this.$request.fetchAnswerList({
...query,
});
this.loading = false;
if (code === 0) {
this.total = data.total;
this.tableData = (data.list && [...data.list]) || [];
} else {
this.$message.error(message);
}
},
},
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
449
|
};
|
4c4f7640
梁保满
路由表,路由前端文件
|
450
451
|
</script>
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
452
|
<style scoped lang="scss">
|
65f592b6
梁保满
答题卡列表页
|
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
|
.tips {
display: flex;
padding-left: 30px;
line-height: 16px;
font-size: 14px;
color: #999;
margin-bottom: 10px;
}
.content {
margin: 0 20px;
background: #f8f8f8;
padding: 12px;
border-radius: 20px;
.item {
display: flex;
align-items: center;
width: 100%;
overflow: hidden;
box-sizing: border-box;
padding: 12px;
border-radius: 20px;
background: #fff;
margin-bottom: 12px;
&:last-of-type {
margin-bottom: 0;
}
.pic-box {
width: 80px;
height: 80px;
border-radius: 10px;
margin-right: 10px;
flex-shrink: 0;
background: #667ffd;
text-align: center;
color: #fff;
font-weight: 500;
.i-box {
padding-top: 10px;
font-size: 32px;
margin-bottom: 3px;
}
}
.info {
height: 80px;
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
.s-line {
padding: 0 5px;
color: #e2e2e2;
}
.title {
font-size: 16px;
color: #222;
font-weight: 500;
.label {
display: inline-block;
font-size: 12px;
color: #2e9afe;
line-height: 16px;
padding: 0 10px;
border: 1px solid #2e9afe;
border-radius: 10px;
transform: translateY(-2px);
}
}
.person {
color: #666;
}
}
.clazz {
font-size: 16px;
color: #667ffd;
font-weight: 500;
position: relative;
margin-right: 8px;
.el-icon-success {
position: absolute;
right: 0;
top: -5px;
color: #667ffd;
}
&:last-of-type {
.el-icon-success {
right: -18px;
}
}
}
.btn-box {
flex-shrink: 0;
.edit {
margin-right: 12px;
}
}
}
}
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
551
552
553
554
555
556
557
558
559
560
|
.answer-header {
.sel-box {
.sel {
min-width: 160px;
}
:deep(.el-cascader__tags) {
flex-wrap: nowrap;
}
}
}
|
65f592b6
梁保满
答题卡列表页
|
561
562
563
564
565
566
567
|
.dialog-footer {
text-align: center;
:deep(.el-button) {
border-radius: 20px;
padding: 8px 20px 7px;
margin: 0 12px;
}
|
d4283687
梁保满
首页布局完成,页面顶部返回组件
|
568
|
}
|
4c4f7640
梁保满
路由表,路由前端文件
|
569
|
</style>
|