This commit is contained in:
yanran200730
2022-10-26 14:49:18 +08:00
parent 1b63596355
commit a477039f7c
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@
style: { style: {
width: '300px' width: '300px'
} }
}, `${row.overPhr}/${row.totalPhr}`) }, `${row.overPhr}/${row.totalPhr - row.overPhr}`)
} }
}, },
{ {

View File

@@ -14,7 +14,7 @@
<ai-info-item label="评分人" :value="info.scorerNames"></ai-info-item> <ai-info-item label="评分人" :value="info.scorerNames"></ai-info-item>
<ai-info-item label="结束时间" :value="info.endTime"></ai-info-item> <ai-info-item label="结束时间" :value="info.endTime"></ai-info-item>
<ai-info-item label="填写情况"> <ai-info-item label="填写情况">
<span>已填写{{ info.overPhr }}还剩{{ info.totalPhr }}</span> <span>已填写{{ info.overPhr }}还剩{{ info.totalPhr - info.overPhr }}</span>
</ai-info-item> </ai-info-item>
</ai-wrapper> </ai-wrapper>
</template> </template>