This commit is contained in:
zhutianqi
2021-11-19 15:18:10 +08:00
parent dba5ad685d
commit 16741310cf
+20
View File
@@ -124,6 +124,26 @@
this.isVisible2 = false
},
saveUserInfo () {
if (this.nodeList.length) {
let ids = ''
this.nodeList.forEach(item => {
if (ids.length > 0) {
ids += ','
ids += item
} else {
ids = item
}
})
let oldList = []
this.$http.get('SarInstitution/institution/getNextById', {
ids: ids
}, {
_this: this
}, res => {
oldList = res
})
} else {
}
this.isVisible2 = false
this.$emit('checkedRole', this.roleList)
},