|
@@ -91,11 +91,17 @@
|
|
width="70"
|
|
width="70"
|
|
:index="indexMethod"
|
|
:index="indexMethod"
|
|
></el-table-column>
|
|
></el-table-column>
|
|
- <el-table-column
|
|
|
|
- prop="questionNumber"
|
|
|
|
- label="评阅题目"
|
|
|
|
- width="120"
|
|
|
|
- ></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="questionNumber" label="评阅题目" min-width="140">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="mr-1">{{ scope.row.questionNumber }}</span>
|
|
|
|
+ <el-tag
|
|
|
|
+ v-if="scope.row.aiMarked"
|
|
|
|
+ class="tag-spin tag-wrap"
|
|
|
|
+ size="medium"
|
|
|
|
+ >AI智能评卷</el-tag
|
|
|
|
+ >
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
prop="studentCode"
|
|
prop="studentCode"
|
|
label="学号"
|
|
label="学号"
|
|
@@ -173,7 +179,7 @@
|
|
<el-table-column
|
|
<el-table-column
|
|
class-name="action-column"
|
|
class-name="action-column"
|
|
label="操作"
|
|
label="操作"
|
|
- width="140"
|
|
|
|
|
|
+ width="120"
|
|
fixed="right"
|
|
fixed="right"
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|