|
@@ -242,6 +242,7 @@ const columns: EpTableColumn<RowType>[] = [
|
|
|
{ label: '给分', prop: 'markerScore', minWidth: 70 },
|
|
|
{ label: '客观分', prop: 'objectiveScore', minWidth: 70 },
|
|
|
{ label: '客主比', prop: 'markerRatio', minWidth: 80 },
|
|
|
+ { label: '成绩客主比', prop: 'ratio', minWidth: 110 },
|
|
|
{ label: '成绩', prop: 'markScore', minWidth: 70 },
|
|
|
{ label: '评卷时间', prop: 'markTime', minWidth: 130 },
|
|
|
]
|
|
@@ -288,6 +289,7 @@ const onSubmit = async () => {
|
|
|
current.value.markerScore = res.markerScore
|
|
|
current.value.objectiveScore = res.objectiveScore
|
|
|
// current.value.markerRatio = res.ratio
|
|
|
+ current.value.ratio = res.ratio
|
|
|
current.value.markTime = res.markTime
|
|
|
current.value.markerScore = res.markerScore
|
|
|
ElMessage.success('修改成功')
|