组织换届

This commit is contained in:
shijingjing
2022-10-18 15:56:46 +08:00
parent 8f8e8afa83
commit c7c8f1d72e
6 changed files with 342 additions and 147 deletions

View File

@@ -86,7 +86,7 @@ export default {
instance: Function,
permissions: Function,
dict: Object,
selected: Object
selected: Object,
},
data() {
return {
@@ -128,6 +128,9 @@ export default {
}
}
},
mounted() {
this.getList(this.selected.id)
},
methods: {
jobEdit() {},
jobDelete() {},
@@ -140,6 +143,13 @@ export default {
}
})
},
getList(id) {
this.instance.post(`/app/apporganizationgeneralelection/queryDetailByOrganizationId?organizationId=${id}`).then(res=>{
if(res?.data) {
console.log(res,'111');
}
})
},
handleJobForm() {},
handleCandForm() {},
}