From 8556286af80955b5a1b6102a9826f5e9197fac95 Mon Sep 17 00:00:00 2001 From: Fixiaobai <fixiaobai@163.com> Date: 星期三, 13 九月 2023 18:03:43 +0800 Subject: [PATCH] modified: config/index.js modified: src/assets/api/controller.js modified: src/components/view/finishedProductInspection.vue new file: src/components/view/finishedProductInspectionAdd.vue new file: src/components/view/finishedProductInspectionLook.vue new file: src/components/view/finishedProductInspectionUp.vue modified: src/components/view/processInspection.vue new file: src/components/view/processInspectionLook.vue new file: src/components/view/processInspectionUpdate.vue --- src/components/view/standard-table/product.vue | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/view/standard-table/product.vue b/src/components/view/standard-table/product.vue index 80f18e1..95a0782 100644 --- a/src/components/view/standard-table/product.vue +++ b/src/components/view/standard-table/product.vue @@ -67,7 +67,12 @@ <span>{{scope.row.device}}</span> </template> </el-table-column> - <el-table-column prop="productFather" label="椤圭洰"></el-table-column> + <el-table-column prop="productFather" label="椤圭洰"> + <template slot-scope="scope"> + <el-tag type="info" v-if="scope.row.productFather != null">03</el-tag> + <span>{{scope.row.productFather}}</span> + </template> + </el-table-column> <el-table-column prop="unit" label="鍗曚綅"></el-table-column> <el-table-column prop="product" label="鎸囨爣"></el-table-column> </el-table> @@ -76,7 +81,11 @@ <script> export default ({ data() { - + return { + deviceGroupDialog:false, + selects: [], + isAllSelect:false, + } }, props:['tableData','tableType'], methods:{ -- Gitblit v1.9.3