修改推送接口

This commit is contained in:
qq787203167
2022-03-23 22:52:07 +08:00
parent b0435e95f6
commit 99a1971b1d
+13 -2
View File
@@ -19,6 +19,7 @@
:tree-data="gData" :tree-data="gData"
@select="onSelect" @select="onSelect"
@check="checkChange" @check="checkChange"
@expand="onExpand"
> >
</a-tree> </a-tree>
</div> </div>
@@ -52,7 +53,8 @@
confirmLoading: false, confirmLoading: false,
selectedKey: [], selectedKey: [],
tableKey: [], tableKey: [],
userIds: [] userIds: [],
departId: ''
} }
}, },
mounted() { mounted() {
@@ -67,6 +69,15 @@
onSelect(selectedKeys) { onSelect(selectedKeys) {
this.selectedKey = selectedKeys this.selectedKey = selectedKeys
}, },
onExpand(selectedKeys, val) {
if (val.expanded) {
if (this.departId == val.node.value) {
} else {
this.departId = val.node.value
this.queryDepartUserTreeList()
}
}
},
handleCancel() { handleCancel() {
this.visible = false this.visible = false
}, },
@@ -96,7 +107,7 @@
}, },
queryDepartUserTreeList() { queryDepartUserTreeList() {
this.confirmLoading = true this.confirmLoading = true
getAction('sys/user/queryDepartUserTreeList', {}).then((res) => { getAction('sys/user/queryDepartUserTreeList', { departId: this.departId }).then((res) => {
this.confirmLoading = false this.confirmLoading = false
if (res.success) { if (res.success) {
this.gData = res.result this.gData = res.result