Commit 42e7652d2b99dae5065542457b75af3014f63e7b

Authored by 史婷婷
1 parent 9f29e3ae

fix: 客户开发-审核按钮逻辑修改(已经是流程中心的数据 审核按钮不做角色权限判断 前后端&侯庆讨论决定)

Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -150,7 +150,7 @@ export default {
150 150 return [
151 151 { ...this.buttons[0], visible: (s === 3 && t === '' && this.$auth.hasPermi('customer-dev-manage:customer-dev-plan:modify')) },
152 152 { ...this.buttons[1], visible: this.$auth.hasPermi('customer-dev-manage:customer-dev-plan:reviewDetail') },
153   - { ...this.buttons[2], visible: (s === 1 && t === 'WAIT' && this.$auth.hasPermi('customer-dev-manage:customer-dev-plan:review')) },
  153 + { ...this.buttons[2], visible: (s === 1 && t === 'WAIT') }, // 已经是流程中心的数据 审核按钮不做角色权限判断 前后端&侯庆讨论决定
154 154 { ...this.buttons[3], visible: (s === 2 && t === '' && this.$auth.hasPermi('customer-dev-manage:customer-dev-plan:record')) },
155 155 { ...this.buttons[4], visible: (s === 3 && t === '' && this.$auth.hasPermi('customer-dev-manage:customer-dev-plan:close')) }
156 156 ]
... ...