Browse Source

fix

pull/2/head
break60 4 years ago
parent
commit
dce89249e3
  1. 52
      dolphinscheduler-ui/src/js/conf/home/pages/security/pages/workerGroups/index.vue

52
dolphinscheduler-ui/src/js/conf/home/pages/security/pages/workerGroups/index.vue

@ -92,32 +92,32 @@
_onEdit (item) {
this._create(item)
},
_create (item) {
let self = this
let modal = this.$modal.dialog({
closable: false,
showMask: true,
escClose: true,
className: 'v-modal-custom',
transitionName: 'opacityp',
render (h) {
return h(mCreateWorker, {
on: {
onUpdate () {
self._debounceGET('false')
modal.remove()
},
close () {
modal.remove()
}
},
props: {
item: item
}
})
}
})
},
// _create (item) {
// let self = this
// let modal = this.$modal.dialog({
// closable: false,
// showMask: true,
// escClose: true,
// className: 'v-modal-custom',
// transitionName: 'opacityp',
// render (h) {
// return h(mCreateWorker, {
// on: {
// onUpdate () {
// self._debounceGET('false')
// modal.remove()
// },
// close () {
// modal.remove()
// }
// },
// props: {
// item: item
// }
// })
// }
// })
// },
_getList (flag) {
this.isLoading = !flag
this.getWorkerGroups(this.searchParams).then(res => {

Loading…
Cancel
Save