Browse Source

Merge remote-tracking branch 'origin/gzb' into wzl

gzb
wangzhonglu 7 months ago
parent
commit
e73aaf4e55
1 changed files with 39 additions and 1 deletions
  1. 39
    1
      src/views/regionSection/regionManage/regionManage.vue

+ 39
- 1
src/views/regionSection/regionManage/regionManage.vue View File

472
           key: "regionName",
472
           key: "regionName",
473
           align: "center"
473
           align: "center"
474
         },
474
         },
475
+        {
476
+          title: "区域码",
477
+          key: "regionCode",
478
+          align: "center"
479
+        },
480
+        {
481
+          title: "sso单点登录",
482
+          key: "sso",
483
+          align: "center"
484
+        },
475
         {
485
         {
476
           title: "创建人",
486
           title: "创建人",
477
           key: "createname",
487
           key: "createname",
538
           Required: "是",
548
           Required: "是",
539
           comm: "认证类型:1账号2学号3手机号码4身份证号"
549
           comm: "认证类型:1账号2学号3手机号码4身份证号"
540
         },
550
         },
551
+        {
552
+          data: "timestamp",
553
+          type: "int",
554
+          Required: "是",
555
+          comm: "当前时间戳"
556
+        },
541
         {
557
         {
542
           data: "loginname",
558
           data: "loginname",
543
           type: "string",
559
           type: "string",
549
           type: "string",
565
           type: "string",
550
           Required: "是",
566
           Required: "是",
551
           comm: "认证密码"
567
           comm: "认证密码"
568
+        },
569
+        {
570
+          data: "sign",
571
+          type: "string",
572
+          Required: "是",
573
+          comm: "签名"
574
+        },
575
+        {
576
+          data: "mac",
577
+          type: "string",
578
+          Required: "是",
579
+          comm: "设备"
552
         }
580
         }
553
       ],
581
       ],
554
       response_list: [
582
       response_list: [
642
               type: "string",
670
               type: "string",
643
               Required: "是",
671
               Required: "是",
644
               comm: "身份证号"
672
               comm: "身份证号"
673
+            },
674
+            {
675
+              id: 14,
676
+              data: "usersex",
677
+              type: "int",
678
+              Required: "是",
679
+              comm: "性别0未知1男2女"
645
             }
680
             }
646
           ]
681
           ]
647
         }
682
         }
739
       }).then((data) => {
774
       }).then((data) => {
740
         this.showLoading = false;
775
         this.showLoading = false;
741
         if (data.code === 0) {
776
         if (data.code === 0) {
742
-          this.searchForm.list = data.obj.data;
777
+          this.searchForm.list = data.obj.data.map((v) => {
778
+            v.sso = v.sso === 1 ? "平台" : "自定义";
779
+            return v;
780
+          });
743
           this.searchForm.total = data.obj.total;
781
           this.searchForm.total = data.obj.total;
744
         } else {
782
         } else {
745
           this.$Message.error(data.msg);
783
           this.$Message.error(data.msg);

Loading…
Cancel
Save