From cf47d288de5e1423e86386f1c7c452353b4e8a0a Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 22 八月 2023 16:52:49 +0800 Subject: [PATCH] da --- web_standard/src/components/ext/OperaWInboundExtWindow.vue | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/web_standard/src/components/ext/OperaWInboundExtWindow.vue b/web_standard/src/components/ext/OperaWInboundExtWindow.vue index 658fb75..35681a7 100644 --- a/web_standard/src/components/ext/OperaWInboundExtWindow.vue +++ b/web_standard/src/components/ext/OperaWInboundExtWindow.vue @@ -101,6 +101,18 @@ </el-select> </template> </el-table-column> + <el-table-column v-if="winType==2" label="宸ュ簭" min-width="100px"> + <template slot-scope="{row}"> + <el-select v-model="row.procedureId" filterable placeholder="璇烽�夋嫨" @select="selectProcedure"> + <el-option + v-for="(item, index) in row.procedureList" + :key="index" + :label="item.name" + :value="item.id"> + </el-option> + </el-select> + </template> + </el-table-column> <el-table-column label="鎵规鍙�" min-width="100px"> <template slot-scope="{row}"> <el-input v-model="row.batch" placeholder="璇疯緭鍏ユ壒娆″彿" v-trim/> @@ -154,6 +166,7 @@ origin: 0, woutboundInBodyBeanList: [] }, + winType:0, disabled: false, pickerOptions: {}, tempWarehouses: [], @@ -220,6 +233,7 @@ open (title, type = 0) { this.title = title this.visible = true + this.winType=type // 鏂板缓 this.$nextTick(() => { this.$refs.form.resetFields() @@ -383,7 +397,8 @@ code: item.mmodelCode, name: item.mmodelUnionName, umodelName: item.umodelName, - + procedureList:item.procedureList, + procedureId:null, locationId: this.whLocation.length ? this.whLocation[0].id : null, qualityType: this.whLocation.length ? 0 : this.houseProperty, materialId: item.id, -- Gitblit v1.9.3