jinlin
2023-12-12 0dff85a422669f41ef6d8e88fa24bf26ca164cbd
web/packages/components/zt-table-column-handle/src/zt-table-column-handle.vue
@@ -41,13 +41,21 @@
        return typeof this.hasView === 'boolean' ? this.hasView : this.hasView(row)
      },
      isCanEidt(row) {
        if(row.flowInfo && row.flowInfo.bizId){
          return false
        }else {
        return typeof this.hasEdit === 'boolean' ? this.hasEdit : this.hasEdit(row)
        }
      },
      isCanDelete(row) {
        if(row.flowInfo && row.flowInfo.bizId){
          return false
        }else {
        return typeof this.hasDelete === 'boolean' ? this.hasDelete : this.hasDelete(row)
      }
    }
  }
  }
</script>
<style lang="scss" scoped>