From 901d81f1c56281bab87044d2ff562d8ed8601efa Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期一, 11 三月 2024 09:25:17 +0800 Subject: [PATCH] 完成包装核对功能 --- src/views/basic/part/index.vue | 85 +++++++++++++++++++++++++----------------- 1 files changed, 51 insertions(+), 34 deletions(-) diff --git a/src/views/basic/part/index.vue b/src/views/basic/part/index.vue index e677457..f4b3331 100644 --- a/src/views/basic/part/index.vue +++ b/src/views/basic/part/index.vue @@ -12,7 +12,12 @@ :ajaxFun="ajaxFun" ref="partTable" > - <template #toolbar></template> + <template #toolbar> + <!-- <el-button type="primary" @click="addOrUpdateHandle" + v-if="permissions.basic_part_add">鏂板</el-button> --> + <!-- <el-button text="鍚屾MDM" type="primary" @click="" + v-if="permissions.basic_part_mdm">鍚屾MDM</el-button> --> + </template> </ttable> <!-- 寮圭獥, 鏂板 / 淇敼 --> <table-form @@ -80,6 +85,8 @@ uploadInfo: { // 鏄惁灞曠ず涓婁紶EXCEL浠ュ強瀵瑰簲鐨剈rl isShow: true, + download: true, + fileName: '宸茬敵璇风墿鏂欑紪鐮佹ā鏉�', url: '/mes/part/upload' }, prelang: 'operation', @@ -93,7 +100,8 @@ multiSelect: true, // seqNo: true, isShowHide: true, // 鏄惁鏄剧ず鏄惧奖鎸夐挳 - isSearch: false, // 楂樼骇鏌ヨ鎸夐挳 + isSearch: false, // 楂樼骇鏌ヨ鎸夐挳, + isRefresh: true, // 鏄惁鏄剧ず鍒锋柊鎸夐挳 defaultOrderBy: { column: 'id', direction: 'desc' } }, table: { @@ -169,7 +177,7 @@ { minWidth: '120', prop: 'sunit', - label: '鍗曚綅2', + label: '閲嶉噺鍗曚綅', sort: true, isTrue: true, isSearch: true, @@ -190,7 +198,7 @@ searchInfoType: 'text' }, // 涓�绾у垎绫� - { + { minWidth: '120', prop: 'assortment', label: '涓�绾у垎绫�', @@ -239,7 +247,7 @@ searchInfoType: 'text' }, // 鍨嬪彿 - { + /* { minWidth: '140', prop: 'partModel', label: '鍨嬪彿', @@ -301,7 +309,7 @@ optList: () => { return this.lotTrackingIfsOptions } - }, + }, */ // 鐗堟湰鍙� { minWidth: '140', @@ -311,7 +319,7 @@ isTrue: true, isSearch: true, searchInfoType: 'text' - }, + }/* , // 璁″垝鏂规硶 { minWidth: '140', @@ -325,9 +333,9 @@ optList: () => { return this.planningMethodOptions } - }, + }, */ // 鍥惧彿 - { + /* { minWidth: '140', prop: 'drawingNumber', label: '鍥惧彿', @@ -355,9 +363,9 @@ isTrue: true, isSearch: true, searchInfoType: 'text' - }, + }, */ // 妫�楠屽憳 - { + /* { minWidth: '140', prop: 'examiner', label: '妫�楠屽憳', @@ -388,20 +396,9 @@ isTrue: true, isSearch: true, searchInfoType: 'text' - } + } */ ], toolbar: [ - { - text: '鏂板', - type: 'primary', - fun: this.addOrUpdateHandle - }, - { - text: '鍚屾MDM', - type: 'primary', - fun: () => (this.syncDateVisible = true), - loading: false - } // { // text: '澶ф爣绛�', // type: 'primary', @@ -409,14 +406,7 @@ // loading: false // } ], - operator: [ - { - text: '鍒犻櫎', - type: 'text', - size: 'small', - fun: this.deleteHandle - } - ], + operator: null, operatorConfig: { fixed: 'right', label: '鎿嶄綔', @@ -446,16 +436,39 @@ PrintLabelForm }, created() { +if(this.permissions.basic_part_mdm){ + this.table.toolbar.push( + { + text: '鍚屾MDM', + type: 'primary', + fun: () => this.syncDateVisible = true, + loading: false + } + ) + } + if(this.permissions.basic_part_del){ + this.table.operator = [ + { + text: '鍒犻櫎', + type: 'text', + size: 'small', + fun: this.deleteHandle + } + ] + } + this.uploadInfo.isShow = this.permissions.basic_part_upload this.table.column.find((e) => e.label === 'IFS鍚敤鎵规绠$悊').isTrue = false this.table.column.find((e) => e.label === '璁″垝鏂规硶').isTrue = false - this.getUnitType('unit') - this.getMaterialType('material_type') this.getCategoryType('category') this.getAssortmentType('assortment') this.getPlanningMethodType('planning_method_type') this.getThreeLevelClassificationType('three_classification_type') - this.getMaterialAttributeType() this.getExaminerDict('examiner_type') + }, + mounted(){ + this.getUnitType('unit') + this.getMaterialType('material_type') + this.getMaterialAttributeType() }, computed: { ...mapGetters(['permissions']) @@ -467,6 +480,10 @@ }, // 鏂板 / 淇敼 addOrUpdateHandle(row) { + if(!this.permissions.basic_part_edit && row.id!=null){ + this.$message.error("璇ヨ鑹叉病鏈夋搷浣滄潈闄�") + return + } this.addOrUpdateVisible = true this.$nextTick(() => { this.$refs.addOrUpdate.init(row == null ? null : row.id) -- Gitblit v1.9.3