fix:检验表详情中缺陷项列表展示分类

This commit is contained in:
shijing 2025-04-24 15:09:22 +08:00
parent 3c841446b0
commit a9f1159003
1 changed files with 7 additions and 0 deletions

View File

@ -201,6 +201,7 @@
>
<el-table-column label="名称" prop="name"></el-table-column>
<el-table-column label="分类" prop="cate"></el-table-column>
<el-table-column label="备注" prop="note"></el-table-column>
</xtSelect>
</template>
</el-table-column>
@ -210,6 +211,12 @@
<el-input v-else v-model="scope.row.rule_expression" placeholder="请输入判定表达式"></el-input>
</template>
</el-table-column>
<el-table-column prop="type" label="分类">
<template #default="scope">
<el-tag v-if="scope.row.defect_okcate==20" type="warning">合格B类 </el-tag>
<span v-if="scope.row.defect_okcate==30" type="danger">不合格</span>
</template>
</el-table-column>
<el-table-column prop="type" label="备注">
<template #default="scope">
<span v-if="!scope.row.isEdit">{{ scope.row.note }}</span>