|
|
@ -27,6 +27,9 @@ |
|
|
|
|
|
|
|
</template> |
|
|
|
<script lang="ts" setup> |
|
|
|
import { DictTag } from '@/components/DictTag' |
|
|
|
import { TableColumn } from '@/types/table' |
|
|
|
|
|
|
|
// 查看质检报告 |
|
|
|
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime' |
|
|
|
import {queryQualityInspection} from '@/api/wms/supplierdeliverInspectionDetail' |
|
|
@ -101,6 +104,12 @@ const getAnnexList = async () => { |
|
|
|
"field": "uom", |
|
|
|
"dictType": "uom", |
|
|
|
"dictClass": "string", |
|
|
|
formatter : (_: Recordable, __: TableColumn, cellValue: any) => { |
|
|
|
return h(DictTag, { |
|
|
|
type: "uom", // ! 表示一定不为空 |
|
|
|
value: cellValue |
|
|
|
}) |
|
|
|
}, |
|
|
|
"isTable": true, |
|
|
|
"isForm": false, |
|
|
|
"sort": "custom", |
|
|
|