Browse Source

Merge pull request '维护服务定义优化' (#120) from feature_supplier into develop

Reviewed-on: http://101.201.121.115:3000/leo/LAPP_GAAS_GFrame_WEBFRONT/pulls/120
Reviewed-by: Liwei <wei.li@le-it.com.cn>
pull/121/head
Liwei 3 years ago
parent
commit
5254d0abbe
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      src/views/equip/basic/service.vue

+ 7
- 1
src/views/equip/basic/service.vue View File

@ -470,6 +470,9 @@ export default {
})
return item && flag
})
if (!this.form.unvalst) {
this.form.unvalst = []
}
this.form.unvalst = this.form.unvalst.concat(this.assignArray || [])
},
/** 未分配 ->已分配*/
@ -485,6 +488,9 @@ export default {
})
return item && flag
})
if (!this.form.valst) {
this.form.valst = []
}
this.form.valst = this.form.valst.concat(this.unassignArray || [])
},
//
@ -528,7 +534,7 @@ export default {
handleAdd() {
this.reset()
getUnassignList().then(res => {
this.form.unvalst = res.data
this.form.unvalst = res.data || []
this.open = true
})
this.title = '添加'


Loading…
Cancel
Save