Browse Source

刀模不合格为红色

master
shenzhouyu 3 months ago
parent
commit
670c545f9e
  1. 6
      src/views/modules/dm/DMFAIResultEntry.vue

6
src/views/modules/dm/DMFAIResultEntry.vue

@ -131,7 +131,11 @@
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<span v-if="!item.columnHidden"> {{ scope.row[item.columnProp] }}</span>
<span
v-if="!item.columnHidden"
:style="item.columnProp === 'inspectionResult' && scope.row.inspectionResult === '不合格' ? { color: 'red', fontWeight: 'bold' } : {}">
{{ scope.row[item.columnProp] }}
</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>

Loading…
Cancel
Save