From d892f98a6fc7bacca5c39c92f3f74ef2e81ba3f2 Mon Sep 17 00:00:00 2001
From: 王震 <10952869+daywangzhen@user.noreply.gitee.com>
Date: 星期三, 27 十二月 2023 17:40:20 +0800
Subject: [PATCH] 	modified:   src/views/warehouse/pallettransports/index.vue 	modified:   vue.config.js

---
 src/views/basic/part/index.vue |   54 +++++++++++++++++++++++++++++-------------------------
 1 files changed, 29 insertions(+), 25 deletions(-)

diff --git a/src/views/basic/part/index.vue b/src/views/basic/part/index.vue
index ed5c987..17fc30c 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 type="primary" @click="() => (this.syncDateVisible = true)"
+          v-if="permissions.basic_part_mdm">鍚屾MDM</el-button>
+        </template>
       </ttable>
       <!-- 寮圭獥, 鏂板 / 淇敼 -->
       <table-form
@@ -191,7 +196,7 @@
             searchInfoType: 'text'
           },
           // 涓�绾у垎绫�
-         /*  {
+           {
             minWidth: '120',
             prop: 'assortment',
             label: '涓�绾у垎绫�',
@@ -228,7 +233,7 @@
             optList: () => {
               return this.getThreeLevelClassification()
             }
-          }, */
+          }, 
           // 瑙勬牸
           {
             minWidth: '140',
@@ -392,17 +397,6 @@
           } */
         ],
         toolbar: [
-          {
-            text: '鏂板',
-            type: 'primary',
-            fun: this.addOrUpdateHandle
-          },
-          {
-            text: '鍚屾MDM',
-            type: 'primary',
-            fun: () => (this.syncDateVisible = true),
-            loading: false
-          }
           // {
           //   text: '澶ф爣绛�',
           //   type: 'primary',
@@ -410,14 +404,7 @@
           //   loading: false
           // }
         ],
-        operator: [
-          {
-            text: '鍒犻櫎',
-            type: 'text',
-            size: 'small',
-            fun: this.deleteHandle
-          }
-        ],
+        operator: null,
         operatorConfig: {
           fixed: 'right',
           label: '鎿嶄綔',
@@ -447,16 +434,29 @@
     PrintLabelForm
   },
   created() {
+    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'])
@@ -468,6 +468,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