分值显示调整

This commit is contained in:
fan 2024-03-05 09:42:25 +08:00
parent 0444ef9c46
commit 35c6d3e19f

View File

@ -15,7 +15,11 @@
<el-table-column type="index" width="50" />
<el-table-column label="描述" prop="name" />
<el-table-column label="评分标准" prop="criteria" />
<el-table-column label="分值" prop="score" width="50" />
<el-table-column label="分值" prop="score" width="50">
<template slot-scope="scope">
<span>{{ scope.row.score === 0? '': scope.row.score }}</span>
</template>
</el-table-column>
</el-table>
</el-dialog>
</template>