|
|
@@ -47,10 +47,18 @@
|
|
|
{{ getDictValue('质检标准类型', row.itemVO.type) }}
|
|
|
</template>
|
|
|
|
|
|
-
|
|
|
<template v-slot:toolList="{ row }">
|
|
|
- <div style="display: inline-block;" v-for="(item,idx) in row.itemVO.toolList" :key="idx">{{ item.name }} <span v-if="row.itemVO.toolList && idx != row.itemVO.toolList.length - 1">, </span></div>
|
|
|
- </template>
|
|
|
+ <div
|
|
|
+ style="display: inline-block"
|
|
|
+ v-for="(item, idx) in row.itemVO.toolList"
|
|
|
+ :key="idx"
|
|
|
+ >{{ item.name }}
|
|
|
+ <span
|
|
|
+ v-if="row.itemVO.toolList && idx != row.itemVO.toolList.length - 1"
|
|
|
+ >,
|
|
|
+ </span></div
|
|
|
+ >
|
|
|
+ </template>
|
|
|
|
|
|
<template v-slot:action="{ row }">
|
|
|
<el-popconfirm
|
|
|
@@ -97,6 +105,12 @@
|
|
|
current: null,
|
|
|
|
|
|
columns: [
|
|
|
+ {
|
|
|
+ prop: 'itemVO.categoryLevelName',
|
|
|
+ label: '质检类型',
|
|
|
+ align: 'center',
|
|
|
+ minWidth: 110
|
|
|
+ },
|
|
|
{
|
|
|
prop: 'itemVO.inspectionCode',
|
|
|
label: '参数编码',
|
|
|
@@ -184,6 +198,7 @@
|
|
|
},
|
|
|
{
|
|
|
label: '操作',
|
|
|
+
|
|
|
slot: 'action',
|
|
|
showOverflowTooltip: true
|
|
|
}
|