From 9ed716080ceb42c2694626e077b58a0aaa7b4f72 Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期一, 27 五月 2024 15:53:29 +0800 Subject: [PATCH] 对接下单新增字段 --- src/components/do/b1-ins-order/add.vue | 51 ++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 44 insertions(+), 7 deletions(-) diff --git a/src/components/do/b1-ins-order/add.vue b/src/components/do/b1-ins-order/add.vue index 6cd0389..03ffe0e 100644 --- a/src/components/do/b1-ins-order/add.vue +++ b/src/components/do/b1-ins-order/add.vue @@ -244,6 +244,30 @@ <el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="addObj.otcCode" :readonly="active>1"></el-input> </div> </el-col> + <el-col class="search_thing" :span="6"> + <div class="search_label"><span class="required-span">* </span>宸ョ▼鍚嶇О锛�</div> + <div class="search_input"> + <el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="addObj.engineering" :readonly="active>1"></el-input> + </div> + </el-col> + <el-col class="search_thing" :span="6"> + <div class="search_label"><span class="required-span">* </span>宸ョ▼鍚嶇ОEN锛�</div> + <div class="search_input"> + <el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="addObj.engineeringEn" :readonly="active>1"></el-input> + </div> + </el-col> + <el-col class="search_thing" :span="6"> + <div class="search_label"><span class="required-span">* </span>鐢熶骇鍗曚綅锛�</div> + <div class="search_input"> + <el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="addObj.production" :readonly="active>1"></el-input> + </div> + </el-col> + <el-col class="search_thing" :span="6"> + <div class="search_label"><span class="required-span">* </span>鐢熶骇鍗曚綅EN锛�</div> + <div class="search_input"> + <el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="addObj.productionEn" :readonly="active>1"></el-input> + </div> + </el-col> <el-col class="search_thing" :span="6" style="align-items: flex-start;margin: 8px 0;"> <div class="search_label">澶囨敞锛�</div> <div class="search_input"> @@ -272,7 +296,7 @@ <el-table-column prop="model" label="鏍峰搧鍨嬪彿" align="center" min-width="100"> <template slot-scope="scope"> <el-select v-model="scope.row.model" filterable allow-create default-first-option placeholder="鏍峰搧鍨嬪彿" - size="small" @change="handleChangeModel" :disabled="active>1" style="width: 100%;" disabled> + size="small" @change="handleChangeModel" :disabled="active>1" style="width: 100%;"> <el-option v-for="item in models" :key="item.value" :label="item.label" :value="item.value"> </el-option> </el-select> @@ -348,7 +372,7 @@ <el-table-column prop="section" label="鍖洪棿" width="120" show-overflow-tooltip></el-table-column> <el-table-column prop="ask" label="瑕佹眰鍊�" min-width="220px"> <template slot-scope="scope"> - <el-input size="small" placeholder="瑕佹眰鍊�" v-model="scope.row.ask" clearable type="textarea" + <el-input size="small" placeholder="瑕佹眰鍊�" v-model="scope.row.ask" clearable type="textarea" readonly :autosize="{ minRows: 1, maxRows: 3}" @change="e=>requestChange(e,scope.row)" :readonly="active>1"></el-input> </template> </el-table-column> @@ -562,7 +586,11 @@ isLeave: 0, orderType: null, send: 1, - formType: '閫佹' + formType: '閫佹', + engineering: null, + engineeringEn: null, + production: null, + productionEn: null, }, sample: { sampleCode: null, @@ -726,6 +754,14 @@ this.$message.error('璇疯緭鍏ユ潵鏍锋柟寮�') } else if (!this.addObj.orderType) { this.$message.error('璇烽�夋嫨妫�楠岀被鍒�') + }else if (!this.addObj.engineering) { + this.$message.error('璇疯緭鍏ュ伐绋嬪悕绉�') + } else if (!this.addObj.engineeringEn) { + this.$message.error('璇疯緭鍏ュ伐绋嬪悕绉癊N') + }else if (!this.addObj.production) { + this.$message.error('璇疯緭鍏ョ敓浜у崟浣�') + }else if (!this.addObj.productionEn) { + this.$message.error('璇疯緭鍏ョ敓浜у崟浣岴N') } else if (this.sampleList.length < 1) { this.$message.error('璇锋坊鍔犱竴涓牱鍝�') } else if (!this.sampleList.every(m => m.sample)) { @@ -876,8 +912,8 @@ }, activeStandardTree() { let trees = this.selectTree.split(" - ") - if (trees.length < 5) { - this.$message.error('鏈�夋嫨鍨嬪彿') + if (trees.length < 4) { + this.$message.error('鏈�夋嫨浜у搧') return } this.addObj.factory = trees[0] @@ -1144,8 +1180,9 @@ if(val===null||val==='')return this.getProductLoad = true this.$axios.post(this.$api.standardTree.selectStandardProductList, { - model: this.addObj.model + '-' + row.modelNum, - standardMethodListId: val + model: row.model + '-' + row.modelNum, + standardMethodListId: val, + factory: this.selectTree, }, { headers: { 'Content-Type': 'application/json' -- Gitblit v1.9.3