zouyu
2023-12-21 a48ded866d223f581944ea9043df1b296b3425e3
src/views/technology/routing/index.vue
@@ -358,18 +358,7 @@
          }
        ],
        toolbar: [],
        operator: [
          {
            text: '删除',
            type: 'text',
            size: 'small',
            fun: this.deleteHandle
            // show: {
            //   val: ['01draft'],
            //   key: 'state'
            // }
          }
        ],
        operator: null,
        operatorConfig: {
          fixed: 'right',
          label: '操作',
@@ -446,6 +435,20 @@
    this.getData()
  },
  created() {
    if(this.permissions.technology_routing_del){
      this.table.operator = [
          {
            text: '删除',
            type: 'text',
            size: 'small',
            fun: this.deleteHandle
            // show: {
            //   val: ['01draft'],
            //   key: 'state'
            // }
          }
        ]
    }
    this.getBomTypeDbOptions()
  },
  methods: {
@@ -474,10 +477,6 @@
    },
    // 删除
    deleteHandle(row) {
      if(!this.permissions.technology_routing_del){
        this.$message.error("该角色没有操作权限")
        return
      }
      this.$confirm('是否确认删除工艺编号:' + row.routingNo + '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',