Browse Source

路由优化

gzb
wangzhonglu 9 months ago
parent
commit
e4a0c2a602
36 changed files with 322 additions and 169 deletions
  1. 7
    0
      src/assets/less/common.less
  2. 0
    70
      src/assets/less/rootPage.less
  3. 3
    3
      src/router/region.js
  4. 10
    2
      src/views/platformSection/home/index.vue
  5. 2
    2
      src/views/platformSection/index.vue
  6. 10
    2
      src/views/platformSection/log/deviceExport.vue
  7. 10
    2
      src/views/platformSection/networkManage/whitelistLibrary.vue
  8. 10
    2
      src/views/platformSection/notice/index.vue
  9. 10
    2
      src/views/platformSection/regionManage/adminManage.vue
  10. 10
    2
      src/views/platformSection/regionManage/regionManage.vue
  11. 10
    2
      src/views/regionSection/applicationManage/applicationGroup.vue
  12. 10
    2
      src/views/regionSection/applicationManage/applicationManage.vue
  13. 10
    2
      src/views/regionSection/home/index.vue
  14. 2
    2
      src/views/regionSection/index.vue
  15. 10
    2
      src/views/regionSection/log/deviceExport.vue
  16. 10
    2
      src/views/regionSection/networkManage/whitelist.vue
  17. 10
    2
      src/views/regionSection/networkManage/whitelistLibrary.vue
  18. 10
    2
      src/views/regionSection/notice/index.vue
  19. 0
    14
      src/views/regionSection/regionManage/admin/index.vue
  20. 22
    0
      src/views/regionSection/regionManage/adminManage.vue
  21. 0
    14
      src/views/regionSection/regionManage/region/index.vue
  22. 22
    0
      src/views/regionSection/regionManage/regionManage.vue
  23. 0
    14
      src/views/regionSection/regionManage/school/index.vue
  24. 22
    0
      src/views/regionSection/regionManage/schoolManage.vue
  25. 10
    2
      src/views/regionSection/search/allApps.vue
  26. 10
    2
      src/views/regionSection/search/allUsers.vue
  27. 10
    2
      src/views/regionSection/search/allWhitelists.vue
  28. 10
    2
      src/views/regionSection/search/device.vue
  29. 10
    2
      src/views/regionSection/search/deviceUsers.vue
  30. 10
    2
      src/views/regionSection/setting/allApps.vue
  31. 10
    2
      src/views/regionSection/setting/device.vue
  32. 10
    2
      src/views/regionSection/setting/logo.vue
  33. 10
    2
      src/views/regionSection/setting/powerUp.vue
  34. 10
    2
      src/views/regionSection/setting/wallpaper.vue
  35. 10
    2
      src/views/schoolSection/home/index.vue
  36. 2
    2
      src/views/schoolSection/index.vue

+ 7
- 0
src/assets/less/common.less View File

@@ -339,4 +339,11 @@ fieldset[disabled] .ivu-input,
339 339
   background: linear-gradient(180deg, #30e5fc 0%, #34a4ff 100%);
340 340
   box-shadow: inset 0 1px 2px 0 #ffffffb3, inset 0 -2px 3px 0 #ffffff4d,
341 341
     0 3px 5px 0 #339dff80, inset 0 -2px 0 0 #2b89e0;
342
+}
343
+.main_root {
344
+  margin: 0 16px 10px;
345
+  min-height: calc(100% - 10px);
346
+  border-radius: 15px;
347
+  border: 1px solid #e9f0f9;
348
+  background-color: #fff;
342 349
 }

+ 0
- 70
src/assets/less/rootPage.less View File

@@ -1,70 +0,0 @@
1
-.root_main_box {
2
-  display: flex;
3
-  justify-content: space-between;
4
-  height: calc(100% - 50px);
5
-  overflow: hidden;
6
-  > .root_main_tree {
7
-    width: 266px;
8
-    height: 100%;
9
-    overflow: hidden;
10
-    box-shadow: 0 0 30px 0 #95abdf33;
11
-    &.hide_left {
12
-      display: none;
13
-    }
14
-    > .main_tree_top {
15
-      display: flex;
16
-      justify-content: center;
17
-      align-items: center;
18
-      margin: 10px;
19
-      .search_input {
20
-        // width: calc(100% - 38px);
21
-        width: 100%;
22
-        /deep/.ivu-input {
23
-          border: none;
24
-          &:focus {
25
-            box-shadow: none;
26
-          }
27
-        }
28
-      }
29
-    }
30
-    > .tree_list_box {
31
-      margin-top: 10px;
32
-      height: calc(100% - 52px);
33
-      box-shadow: 0 0 30px 0 #95abdf33;
34
-      border-radius: 4px;
35
-      background-color: #ffffff66;
36
-      overflow: hidden;
37
-      &:hover {
38
-        overflow: auto;
39
-      }
40
-    }
41
-  }
42
-  .root_main_content {
43
-    width: calc(100% - 282px);
44
-    height: 100%;
45
-    overflow: hidden;
46
-    &.full_right {
47
-      width: 100% !important;
48
-      /deep/ .page_root,
49
-      /deep/ .nav_page_root,
50
-      /deep/ .navigation_list {
51
-        padding-left: 16px;
52
-      }
53
-    }
54
-    > .navigation_list {
55
-      display: flex;
56
-      justify-content: flex-start;
57
-      align-items: center;
58
-      height: 52px;
59
-      .move_btn {
60
-        transform: rotate(90deg);
61
-        cursor: e-resize;
62
-      }
63
-    }
64
-    > .navigation_content {
65
-      width: 100%;
66
-      height: calc(100% - 52px);
67
-      overflow: auto;
68
-    }
69
-  }
70
-}

+ 3
- 3
src/router/region.js View File

@@ -24,7 +24,7 @@ export default {
24 24
     {
25 25
       path: "regionManage",
26 26
       component: () =>
27
-        import("@/views/regionSection/regionManage/region/index.vue"),
27
+        import("@/views/regionSection/regionManage/regionManage.vue"),
28 28
       name: "regionManage",
29 29
       meta: {
30 30
         keepAlive: true,
@@ -35,7 +35,7 @@ export default {
35 35
     {
36 36
       path: "schoolManage",
37 37
       component: () =>
38
-        import("@/views/regionSection/regionManage/school/index.vue"),
38
+        import("@/views/regionSection/regionManage/schoolManage.vue"),
39 39
       name: "schoolManage",
40 40
       meta: {
41 41
         keepAlive: true,
@@ -46,7 +46,7 @@ export default {
46 46
     {
47 47
       path: "adminManage",
48 48
       component: () =>
49
-        import("@/views/regionSection/regionManage/admin/index.vue"),
49
+        import("@/views/regionSection/regionManage/adminManage.vue"),
50 50
       name: "adminManage",
51 51
       meta: {
52 52
         keepAlive: true,

+ 10
- 2
src/views/platformSection/home/index.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 2
- 2
src/views/platformSection/index.vue View File

@@ -161,7 +161,7 @@ export default {
161 161
               padding: 0 10px;
162 162
               white-space: nowrap;
163 163
               line-height: 35px;
164
-              border-radius: 8px;
164
+              border-radius: 4px;
165 165
               color: #798cb5;
166 166
               cursor: pointer;
167 167
               &.router-link-active,
@@ -181,7 +181,7 @@ export default {
181 181
         &.selected {
182 182
           background-color: #339dff;
183 183
           color: #fff;
184
-          border-radius: 4px;
184
+          border-radius: 8px;
185 185
         }
186 186
         &:hover {
187 187
           .arrow_dropdown {

+ 10
- 2
src/views/platformSection/log/deviceExport.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/platformSection/networkManage/whitelistLibrary.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/platformSection/notice/index.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/platformSection/regionManage/adminManage.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/platformSection/regionManage/regionManage.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/applicationManage/applicationGroup.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/applicationManage/applicationManage.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/home/index.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 2
- 2
src/views/regionSection/index.vue View File

@@ -143,7 +143,7 @@ export default {
143 143
               padding: 0 10px;
144 144
               white-space: nowrap;
145 145
               line-height: 35px;
146
-              border-radius: 8px;
146
+              border-radius: 4px;
147 147
               color: #798cb5;
148 148
               cursor: pointer;
149 149
               &.router-link-active,
@@ -163,7 +163,7 @@ export default {
163 163
         &.selected {
164 164
           background-color: #339dff;
165 165
           color: #fff;
166
-          border-radius: 4px;
166
+          border-radius: 8px;
167 167
         }
168 168
         &:hover {
169 169
           .arrow_dropdown {

+ 10
- 2
src/views/regionSection/log/deviceExport.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/networkManage/whitelist.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/networkManage/whitelistLibrary.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/notice/index.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 0
- 14
src/views/regionSection/regionManage/admin/index.vue View File

@@ -1,14 +0,0 @@
1
-<template>
2
-  <div></div>
3
-</template>
4
-
5
-<script>
6
-export default {
7
-  data() {
8
-    return {};
9
-  },
10
-  methods: {}
11
-};
12
-</script>
13
-
14
-<style lang="less" scoped></style>

+ 22
- 0
src/views/regionSection/regionManage/adminManage.vue View File

@@ -0,0 +1,22 @@
1
+<template>
2
+  <div class="main_root"></div>
3
+</template>
4
+
5
+<script>
6
+export default {
7
+  data() {
8
+    return {};
9
+  },
10
+  methods: {}
11
+};
12
+</script>
13
+
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 0
- 14
src/views/regionSection/regionManage/region/index.vue View File

@@ -1,14 +0,0 @@
1
-<template>
2
-  <div></div>
3
-</template>
4
-
5
-<script>
6
-export default {
7
-  data() {
8
-    return {};
9
-  },
10
-  methods: {}
11
-};
12
-</script>
13
-
14
-<style lang="less" scoped></style>

+ 22
- 0
src/views/regionSection/regionManage/regionManage.vue View File

@@ -0,0 +1,22 @@
1
+<template>
2
+  <div class="main_root"></div>
3
+</template>
4
+
5
+<script>
6
+export default {
7
+  data() {
8
+    return {};
9
+  },
10
+  methods: {}
11
+};
12
+</script>
13
+
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 0
- 14
src/views/regionSection/regionManage/school/index.vue View File

@@ -1,14 +0,0 @@
1
-<template>
2
-  <div></div>
3
-</template>
4
-
5
-<script>
6
-export default {
7
-  data() {
8
-    return {};
9
-  },
10
-  methods: {}
11
-};
12
-</script>
13
-
14
-<style lang="less" scoped></style>

+ 22
- 0
src/views/regionSection/regionManage/schoolManage.vue View File

@@ -0,0 +1,22 @@
1
+<template>
2
+  <div class="main_root"></div>
3
+</template>
4
+
5
+<script>
6
+export default {
7
+  data() {
8
+    return {};
9
+  },
10
+  methods: {}
11
+};
12
+</script>
13
+
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/search/allApps.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/search/allUsers.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/search/allWhitelists.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/search/device.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/search/deviceUsers.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/setting/allApps.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/setting/device.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/setting/logo.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/setting/powerUp.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/regionSection/setting/wallpaper.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 10
- 2
src/views/schoolSection/home/index.vue View File

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <div></div>
2
+  <div class="main_root"></div>
3 3
 </template>
4 4
 
5 5
 <script>
@@ -11,4 +11,12 @@ export default {
11 11
 };
12 12
 </script>
13 13
 
14
-<style lang="less" scoped></style>
14
+<style lang="less" scoped>
15
+.main_root {
16
+  margin: 0 16px 10px;
17
+  min-height: calc(100% - 10px);
18
+  border-radius: 15px;
19
+  border: 1px solid #e9f0f9;
20
+  background-color: #fff;
21
+}
22
+</style>

+ 2
- 2
src/views/schoolSection/index.vue View File

@@ -80,7 +80,7 @@ export default {
80 80
               padding: 0 10px;
81 81
               white-space: nowrap;
82 82
               line-height: 35px;
83
-              border-radius: 8px;
83
+              border-radius: 4px;
84 84
               color: #798cb5;
85 85
               cursor: pointer;
86 86
               &.router-link-active,
@@ -100,7 +100,7 @@ export default {
100 100
         &.selected {
101 101
           background-color: #339dff;
102 102
           color: #fff;
103
-          border-radius: 4px;
103
+          border-radius: 8px;
104 104
         }
105 105
         &:hover {
106 106
           .arrow_dropdown {

Loading…
Cancel
Save