From 4c4c5e3815ea20fbecdd93bb35b84bd96f6ab3db Mon Sep 17 00:00:00 2001 From: Fixiaobai <fixiaobai@163.com> Date: 星期四, 14 九月 2023 11:11:53 +0800 Subject: [PATCH] modified: src/components/view/finishedProductInspection.vue modified: src/components/view/measurementManagement.vue --- src/components/view/standard-table/target.vue | 49 ++++++++++++++++++++++++++++++++++++------------- 1 files changed, 36 insertions(+), 13 deletions(-) diff --git a/src/components/view/standard-table/target.vue b/src/components/view/standard-table/target.vue index f07c292..9524ae4 100644 --- a/src/components/view/standard-table/target.vue +++ b/src/components/view/standard-table/target.vue @@ -19,11 +19,16 @@ <span>{{scope.row.tname}}</span> </template> </el-table-column> + <el-table-column prop="pfather" label="椤圭洰"> + <template slot-scope="scope"> + <el-tag type="info" color="#faf2ff" v-if="scope.row.pfather != null"> + <span style="color: #e1affb">03</span> + </el-tag> + <span>{{scope.row.pfather}}</span> + </template> + </el-table-column> <el-table-column prop="pname" label="鎸囨爣鍚嶇О"> <template slot-scope="scope"> - <el-tag type="info" color="#faf2ff" v-if="scope.row.pname != null"> - <span style="color: #e1affb">03</span> - </el-tag> <span>{{scope.row.pname}}</span> </template> </el-table-column> @@ -31,14 +36,14 @@ <el-table-column prop="internal" label="鍐呮帶鍊�"> <template slot-scope="scope"> <el-input v-model="scope.row.internal" - v-if="scope.row.internal != null" + v-if="scope.row.pname != null" @blur="updateVal(scope.row)"></el-input> </template> </el-table-column> <el-table-column prop="required" label="鏍囧噯鍊�"> <template slot-scope="scope"> <el-input v-model="scope.row.required" - v-if="scope.row.required != null" + v-if="scope.row.pname != null" @blur="updateVal(scope.row)"></el-input> </template> </el-table-column> @@ -52,6 +57,8 @@ data() { return { selects: [], + deleteList:[], + isAllSelect:false, } }, props:['tableData','tableType'], @@ -94,13 +101,32 @@ } } }, + //鏀瑰彉閫変腑 + toggleSelection(row, flag) { + this.$set(row, "isChecked", flag); + this.$nextTick(() => { + if (flag) { + this.$refs.multipleTable.toggleRowSelection(row, flag); + } else { + this.$refs.multipleTable.clearSelection(); + } + }); + }, handleSelectionChange(val) { this.deleteList = []; val.forEach((v) => { - if (v.id !== undefined) { - this.deleteList.push(v.id); - } + this.searchIdFun(v); }); + this.$emit("childData",this.deleteList); + }, + //閫掑綊鏌ユ壘閫変腑鏁版嵁id + searchIdFun(data){ + let obj = data; + if(obj.children != undefined){ + this.searchIdFun(obj.children); + }else{ + this.deleteList.push(obj.pid); + } }, // 琛ㄦ牸鏍戝叏閮ㄩ�変腑閰嶇疆 缁撴潫 updateVal(row){ @@ -113,9 +139,6 @@ }).catch(error=>{ this.$message.error(error.message); }) - }, - handleSelectionChange(val) { - this.selects = val; }, } } @@ -164,8 +187,8 @@ /* .standard .el-table__body { height: 100%; } */ - .standard .el-table .el-table__row:not([class*="el-table__row--level-"]) td:nth-child(3){ + /* .standard .el-table .el-table__row:not([class*="el-table__row--level-"]) td:nth-child(3){ padding-left: 23px !important; - } + } */ </style> \ No newline at end of file -- Gitblit v1.9.3