|
@@ -472,6 +472,16 @@ export default {
|
472
|
472
|
key: "regionName",
|
473
|
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
|
486
|
title: "创建人",
|
477
|
487
|
key: "createname",
|
|
@@ -538,6 +548,12 @@ export default {
|
538
|
548
|
Required: "是",
|
539
|
549
|
comm: "认证类型:1账号2学号3手机号码4身份证号"
|
540
|
550
|
},
|
|
551
|
+ {
|
|
552
|
+ data: "timestamp",
|
|
553
|
+ type: "int",
|
|
554
|
+ Required: "是",
|
|
555
|
+ comm: "当前时间戳"
|
|
556
|
+ },
|
541
|
557
|
{
|
542
|
558
|
data: "loginname",
|
543
|
559
|
type: "string",
|
|
@@ -549,6 +565,18 @@ export default {
|
549
|
565
|
type: "string",
|
550
|
566
|
Required: "是",
|
551
|
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
|
582
|
response_list: [
|
|
@@ -642,6 +670,13 @@ export default {
|
642
|
670
|
type: "string",
|
643
|
671
|
Required: "是",
|
644
|
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,7 +774,10 @@ export default {
|
739
|
774
|
}).then((data) => {
|
740
|
775
|
this.showLoading = false;
|
741
|
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
|
781
|
this.searchForm.total = data.obj.total;
|
744
|
782
|
} else {
|
745
|
783
|
this.$Message.error(data.msg);
|