Browse Source

[fixBug-3621][ui]Select the batch checkbox to unfilter the instances in the executing state

pull/3/MERGE
break60 4 years ago
parent
commit
b6761b0299
  1. 5
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue

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

@ -520,10 +520,9 @@
_gantt (item) {
this.$router.push({ path: `/projects/instance/gantt/${item.id}` })
},
_topCheckBoxClick (v) {
this.list.forEach((item, i) => {
this.$set(this.list[i], 'isCheck', v)
})
_.map(this.list , v => v.isCheck = v.state === 'RUNNING_EXEUTION' ? false : true)
this._arrDelChange()
},
_arrDelChange (v) {

Loading…
Cancel
Save