ocr同步成功提示
This commit is contained in:
@@ -93,6 +93,8 @@
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.getSubscribtion()
|
||||
this.loadData()
|
||||
this.visible=this.subVisible
|
||||
this.generateList(this.treeData)
|
||||
},
|
||||
@@ -100,7 +102,15 @@
|
||||
//获取数据
|
||||
loadData(){
|
||||
let params = {}
|
||||
getAction(``,params).then(res=> {
|
||||
getAction(`sys/category/getSysCategoryTree`,params).then(res=> {
|
||||
if(res.success){
|
||||
|
||||
}
|
||||
})
|
||||
},
|
||||
//获取用户的订阅
|
||||
getSubscribtion(){
|
||||
getAction(`domain/domainUserRel/queryList`,{}).then(res=> {
|
||||
if(res.success){
|
||||
|
||||
}
|
||||
@@ -111,7 +121,15 @@
|
||||
},
|
||||
handleOk(e) {
|
||||
this.confirmLoading = true;
|
||||
this.$emit('visible',false)
|
||||
|
||||
let params={
|
||||
|
||||
}
|
||||
postAction(`domain/domainUserRel/insert`,params).then(res=>{
|
||||
if(res.success){
|
||||
this.$emit('visible',false)
|
||||
}
|
||||
})
|
||||
},
|
||||
handleCancel(e) {
|
||||
this.visible = false;
|
||||
|
||||
Reference in New Issue
Block a user