|
@@ -136,9 +136,9 @@
|
|
|
<h3>题目评卷进度</h3>
|
|
|
</div>
|
|
|
<el-table ref="TableList" :data="questionList">
|
|
|
- <el-table-column prop="questionNumber" label="评阅题目" width="120">
|
|
|
+ <el-table-column prop="questionNumber" label="评阅题目" min-width="140">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.questionNumber }}</span>
|
|
|
+ <span class="mr-1">{{ scope.row.questionNumber }}</span>
|
|
|
<el-tag
|
|
|
v-if="scope.row.aiMark"
|
|
|
class="tag-spin tag-wrap"
|
|
@@ -150,7 +150,6 @@
|
|
|
<el-table-column
|
|
|
class-name="action-column"
|
|
|
label="评卷员"
|
|
|
- align="center"
|
|
|
min-width="100"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
@@ -165,31 +164,30 @@
|
|
|
<el-table-column
|
|
|
prop="taskCount"
|
|
|
label="任务总数"
|
|
|
- width="100"
|
|
|
+ min-width="80"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="markedCount"
|
|
|
label="完成总数"
|
|
|
- width="100"
|
|
|
+ min-width="80"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="leftCount"
|
|
|
label="剩余总数"
|
|
|
- width="100"
|
|
|
+ min-width="80"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="currentCount"
|
|
|
label="正在评卷"
|
|
|
- width="100"
|
|
|
+ min-width="80"
|
|
|
></el-table-column>
|
|
|
- <el-table-column prop="percent" label="评卷进度" width="100">
|
|
|
+ <el-table-column prop="percent" label="评卷进度" min-width="80">
|
|
|
<span slot-scope="scope">{{ scope.row.percent || 0 }}%</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
class-name="action-column"
|
|
|
label="待仲裁数"
|
|
|
width="100"
|
|
|
- align="center"
|
|
|
fixed="right"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
@@ -204,8 +202,7 @@
|
|
|
<el-table-column
|
|
|
class-name="action-column"
|
|
|
label="操作"
|
|
|
- width="200"
|
|
|
- align="center"
|
|
|
+ width="250"
|
|
|
fixed="right"
|
|
|
>
|
|
|
<template slot-scope="scope">
|