Browse Source

Merge pull request #3915 from break60/1.3.3-release

[fixbug-3621][ui]Repair check box cannot be canceled
pull/3/MERGE
xingchun-chen 4 years ago committed by GitHub
parent
commit
76609ba143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue

4
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue

@ -521,8 +521,8 @@
this.$router.push({ path: `/projects/instance/gantt/${item.id}` })
},
_topCheckBoxClick (v) {
_.map(this.list , v => v.isCheck = v.state === 'RUNNING_EXEUTION' ? false : true)
_topCheckBoxClick (is) {
_.map(this.list , v => v.isCheck = v.state === ('RUNNING_EXEUTION') || v.state === ('READY_STOP') || v.state === ('READY_PAUSE')? false : is)
this._arrDelChange()
},
_arrDelChange (v) {

Loading…
Cancel
Save