diff --git a/ruoyi-ui/src/views/system/school/index.vue b/ruoyi-ui/src/views/system/school/index.vue
index 7b3aaa9e7..f5bf1110e 100644
--- a/ruoyi-ui/src/views/system/school/index.vue
+++ b/ruoyi-ui/src/views/system/school/index.vue
@@ -128,6 +128,7 @@
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+ {{dict.dictLabel}}
+
-
-
+
+
@@ -237,9 +242,9 @@
-
-
-
+
+
+
@@ -311,6 +316,7 @@ export default {
name: "School",
data() {
return {
+ flag1: false,
// 遮罩层
loading: true,
// 选中数组
@@ -334,6 +340,7 @@ export default {
schoolName: undefined,
nameShort: undefined,
type: undefined,
+ typeOptions: [],
parentId: undefined,
province: undefined,
provincename: undefined,
@@ -373,7 +380,11 @@ export default {
},
created() {
this.getList();
+ this.getDicts("sys_yeylx").then(response => {
+ this.typeOptions = response.data;
+ });
},
+ watch: {},
methods: {
/** 查询幼儿园机构列表 */
getList() {
@@ -522,6 +533,13 @@ export default {
this.download(response.msg);
})
.catch(function() {});
+ },
+ changeHandle(val) {
+ if (val == 3) {
+ this.flag1 = true;
+ } else {
+ this.flag1 = false;
+ }
}
}
};
diff --git a/ruoyi-ui/src/views/system/user/index.vue b/ruoyi-ui/src/views/system/user/index.vue
index 8d290b8b2..1349ef7d9 100644
--- a/ruoyi-ui/src/views/system/user/index.vue
+++ b/ruoyi-ui/src/views/system/user/index.vue
@@ -135,9 +135,24 @@
-
-
-
+
+
+
@@ -328,7 +343,17 @@