diff --git a/src/views/inm/helpso_mio.vue b/src/views/inm/helpso_mio.vue
index a261b14b..37e3a6b7 100644
--- a/src/views/inm/helpso_mio.vue
+++ b/src/views/inm/helpso_mio.vue
@@ -49,12 +49,34 @@
@change="handleQuery"
>
+
+
+
+
+
-
+
@@ -213,13 +235,23 @@ export default {
form: {},
apiObj: this.$API.inm.mio.list,
selection: [],
+ deptOptions: [],
type: "",
cate: "helpso",
mioId: "",
visibleDrawer: false,
};
},
+ mounted() {
+ this.getDeptOptions();
+ },
methods: {
+ getDeptOptions() {
+ let that = this;
+ that.$API.system.dept.list.req({ page: 0, type__in: "dept" }).then((res) => {
+ that.deptOptions = res;
+ });
+ },
//添加
add(type) {
this.dialog.save = true;