From 4fb12efd2e19ed835a47112a1eb937eccb80a549 Mon Sep 17 00:00:00 2001 From: spring <2396852758@qq.com> Date: 星期二, 01 四月 2025 13:31:34 +0800 Subject: [PATCH] 完成标准库变更记录页面 --- src/views/business/materialOrder/customsInspection.vue | 24 ++++++++++++++++++++---- 1 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/views/business/materialOrder/customsInspection.vue b/src/views/business/materialOrder/customsInspection.vue index 396f104..148f25b 100644 --- a/src/views/business/materialOrder/customsInspection.vue +++ b/src/views/business/materialOrder/customsInspection.vue @@ -162,6 +162,15 @@ </el-option> </el-select> </el-form-item> + <el-form-item label="闄勪欢鏌ョ湅:" style="margin-bottom: 6px;margin-top: 6px"> + <el-button type="text" @click="handleFileDialog"> + <i class="el-icon-document"></i> + 闄勪欢鏌ョ湅 + </el-button> + <el-dialog :visible.sync="fileDialogVisible" title="闄勪欢鏌ョ湅" width="80%"> + <fileList :currentNo="partNo" v-if="fileDialogVisible" /> + </el-dialog> + </el-form-item> </el-form> </div> <div style="margin-bottom: 6px;margin-top: 6px"> @@ -320,7 +329,7 @@ <div class="search_input"> <el-radio-group v-model="item.bsm1Val" v-removeAriaHidden @input="upBsmAll(item)"> <el-radio v-for="(a, ai) in JSON.parse(item.bsmRow.sectionCopy)" :key="ai" :label="a">{{ - JSON.parse(item.bsmRow.askCopy)[ai] }}</el-radio> + JSON.parse(item.bsmRow.askCopy)[ai] }}</el-radio> </el-radio-group> </div> </el-col> @@ -410,16 +419,19 @@ selectStandardProductList, selectStandardTreeListByPartNo } from "@/api/business/rawMaterialOrder"; +import fileList from "./commom/fileList.vue" +import limsTable from "@/components/Table/lims-table.vue"; export default { name: "CustomsInspection", dicts: ['check_type', 'urgency_level'], - components: {}, + components: { limsTable, fileList }, props: { }, data() { return { customsInspection: {}, + fileDialogVisible: false, orderType: '', active: 0, currentId: 0, @@ -618,6 +630,10 @@ // this.getInfo() // 鑾峰彇鏁版嵁 // }, methods: { + handleFileDialog() { + this.fileDialogVisible = true + this.currentNo = addObj.partNo || customsInspection.partNo; + }, save1() { if (this.bsm1DiaList.length > 0) { this.bsm1DiaList.forEach(item => { @@ -739,8 +755,8 @@ const str = res.data.treeName.split('-') this.selectTreeTem = str.join(' - ') this.selectTree = str.join(' - ') - this.addListInfo(this.codeLevel, res.data) // 鍘熻緟鏂欐牱鍝佹槸鍥哄畾鐨勶紝灏遍粯璁よ祴鍊间竴鏉℃暟鎹紝鍙媶鍒� - this.selectInsOrderTemplate() // 鍘熻緟鏂欐ā鏉垮垪琛ㄦ煡璇� + this.addListInfo(this.codeLevel, res.data) // 鍘熻緟鏉愭牱鍝佹槸鍥哄畾鐨勶紝灏遍粯璁よ祴鍊间竴鏉℃暟鎹紝鍙媶鍒� + this.selectInsOrderTemplate() // 鍘熻緟鏉愭ā鏉垮垪琛ㄦ煡璇� } else { this.dialogVisible = true this.dialogMessage = res.message -- Gitblit v1.9.3