|
@@ -158,6 +158,9 @@
|
|
|
<CloseCircleFilled style="color: #f4664a" />
|
|
|
</template>
|
|
|
</template>
|
|
|
+ <template v-else-if="column.dataIndex === 'doubleEnable'">
|
|
|
+ {{ record.doubleEnable ? "是" : "" }}
|
|
|
+ </template>
|
|
|
</template>
|
|
|
</a-table>
|
|
|
</Block>
|
|
@@ -360,6 +363,7 @@ const columns: TableColumnType[] = [
|
|
|
},
|
|
|
{ title: "试卷总分", dataIndex: "totalScore", align: "center", width: 100 },
|
|
|
{ title: "分组数", dataIndex: "groupCount", align: "center", width: 80 },
|
|
|
+ { title: "双评", dataIndex: "doubleEnable", align: "center", width: 100 },
|
|
|
];
|
|
|
|
|
|
/** 学校列表信息 */
|