lilei 1 year ago
parent
commit
8cff53c026
2 changed files with 4 additions and 2 deletions
  1. 1 1
      public/version.json
  2. 3 1
      src/views/numsGoodsShelves/shelfProductTempl/set.vue

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1719220016425
+  "version": 1719296425506
 }

+ 3 - 1
src/views/numsGoodsShelves/shelfProductTempl/set.vue

@@ -142,7 +142,9 @@ export default {
         { title: '最大库容', dataIndex: 'maxQty', width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } }
       ]
       // 内置模板没有操作这一列
-      ret.push({ title: '操作', scopedSlots: { customRender: 'action' }, width: '15%', align: 'center' })
+      if (this.basicInfoData && this.basicInfoData.sysFlag == 0) {
+        ret.push({ title: '操作', scopedSlots: { customRender: 'action' }, width: '15%', align: 'center' })
+      }
       return ret
     }
   },