追加关于党组织的抽象类

This commit is contained in:
aixianling
2022-10-24 11:58:47 +08:00
parent bda2b10c7f
commit f178667db8
7 changed files with 85 additions and 133 deletions

View File

@@ -15,9 +15,15 @@ import organizationSetting from "./components/organizationSetting.vue";
export default {
name: "AppOrganizationChange",
label: "组织换届",
provide() {
return {
...this.$props
}
},
props: {
instance: Function,
dict: Object,
permissions: Function
},
components: {
List,
@@ -36,7 +42,6 @@ export default {
},
data() {
return {
component: "List",
params: {},
include: [],
selected: {},
@@ -47,10 +52,6 @@ export default {
this.params = data.params;
},
},
created() {
let {organizationId: id, organizationName: name} = this.user.info
this.selected = {id, name}
}
}
</script>