Browse Source

个人中心样式优化

gzb
guozhongbo 8 months ago
parent
commit
e50f8b43dd

+ 3
- 1
src/views/personal/personal.vue View File

@@ -300,7 +300,7 @@ export default {
300 300
 .main_root {
301 301
   background-color: transparent;
302 302
   border: navajowhite;
303
-  height: calc(100% - 20px);
303
+  height: calc(100% - 10px);
304 304
   display: flex;
305 305
   .personal_list {
306 306
     width: 200px;
@@ -324,6 +324,7 @@ export default {
324 324
   .contents {
325 325
     width: calc(100% - 220px);
326 326
     height: 100%;
327
+    overflow: hidden;
327 328
     .user {
328 329
       height: 200px;
329 330
       border-radius: 15px;
@@ -370,6 +371,7 @@ export default {
370 371
     }
371 372
     .comm {
372 373
       height: calc(100% - 220px);
374
+      overflow-y: auto;
373 375
       border-radius: 15px;
374 376
       background: white;
375 377
       margin-bottom: 20px;

+ 1
- 1
src/views/regionSection/applicationManage/applicationManage.vue View File

@@ -919,7 +919,7 @@ export default {
919 919
         {
920 920
           title: "序号",
921 921
           align: "center",
922
-          Width: 70,
922
+          width: 70,
923 923
           render: (h, params) => {
924 924
             return h(
925 925
               "span",

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

@@ -478,7 +478,7 @@ export default {
478 478
           align: "center"
479 479
         },
480 480
         {
481
-          title: "sso单点登录",
481
+          title: "登录类型",
482 482
           key: "sso",
483 483
           align: "center"
484 484
         },
@@ -775,7 +775,7 @@ export default {
775 775
         this.showLoading = false;
776 776
         if (data.code === 0) {
777 777
           this.searchForm.list = data.obj.data.map((v) => {
778
-            v.sso = v.sso === 1 ? "平台" : "自定义";
778
+            v.sso = v.sso === 1 ? "平台" : "单点登录";
779 779
             return v;
780 780
           });
781 781
           this.searchForm.total = data.obj.total;

Loading…
Cancel
Save