|
@@ -4,7 +4,7 @@
|
|
|
:visible.sync="modalIsShow"
|
|
|
:title="data.className"
|
|
|
top="10vh"
|
|
|
- width="500px"
|
|
|
+ width="700px"
|
|
|
:close-on-click-modal="false"
|
|
|
:close-on-press-escape="false"
|
|
|
append-to-body
|
|
@@ -27,10 +27,7 @@
|
|
|
label="完成总数"
|
|
|
width="100"
|
|
|
></el-table-column>
|
|
|
- <el-table-column prop="loginName" label="评卷员" min-width="100">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.name }}({{ scope.row.loginName }})
|
|
|
- </template>
|
|
|
+ <el-table-column prop="markerUser" label="评卷员" min-width="100">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div slot="footer"></div>
|
|
@@ -70,7 +67,11 @@ export default {
|
|
|
this.modalIsShow = true;
|
|
|
},
|
|
|
async initData() {
|
|
|
- const res = await markProgressClassQuestionListPage(this.data);
|
|
|
+ const res = await markProgressClassQuestionListPage({
|
|
|
+ examId: this.data.examId,
|
|
|
+ paperNumber: this.data.paperNumber,
|
|
|
+ className: this.data.className,
|
|
|
+ });
|
|
|
this.dataList = res || [];
|
|
|
},
|
|
|
},
|