zouyu
2023-12-21 a48ded866d223f581944ea9043df1b296b3425e3
src/views/basic/location/index.vue
@@ -210,14 +210,7 @@
          } */
        ],
        toolbar: [],
        operator: [
          {
            text: '删除',
            type: 'text',
            size: 'small',
            fun: this.deleteHandle
          }
        ],
        operator: null,
        operatorConfig: {
          fixed: 'right',
          label: '操作',
@@ -243,6 +236,16 @@
    TableForm
  },
  created() {
    if(this.permissions.basic_location_del){
      this.table.operator = [
          {
            text: '删除',
            type: 'text',
            size: 'small',
            fun: this.deleteHandle
          }
        ]
    }
    this.getLocTypeCache('warehouse_type') // 获取定时任务运行时状态
    this.initWarehouseSelect()
    // this.getIFSLocationCache()
@@ -359,10 +362,7 @@
    },
    // 删除
    deleteHandle(row) {
      if(!this.permissions.basic_location_del){
        this.$message.error("该角色没有操作权限")
        return
      }
      this.$confirm('是否确认删除库位号为' + row.locNo, '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',