工作组复制,文件分发优化

This commit is contained in:
zhaoxiao
2021-09-17 13:46:01 +08:00
parent d391eeb9ee
commit 44903b69b6
4 changed files with 40 additions and 10 deletions
@@ -69,6 +69,13 @@ export default {
default: false
}
},
watch:{
visible(val) {
if (val) {
this.initData()
}
}
},
data() {
return {
title: '分发',
@@ -104,14 +111,12 @@ export default {
}
}
},
created() {
this.initData()
},
methods: {
/**
* 获取成员列表
*/
getMemberList() {
this.confirmLoading = true
let param = {
projectId: this.projectId,
projectType: this.projectType
@@ -122,6 +127,8 @@ export default {
} else {
console.log(res.message)
}
}).finally(() => {
this.confirmLoading = false
})
},
onCheck(checkedKeys) {