|
@@ -18,14 +18,6 @@
|
18
|
18
|
placeholder="请输入页面地址"
|
19
|
19
|
></Input>
|
20
|
20
|
</FormItem>
|
21
|
|
- <FormItem label="约定标识" style="width: 100%">
|
22
|
|
- <RadioGroup v-model="adminInfo.singleType">
|
23
|
|
- <Radio :label="1">账号</Radio>
|
24
|
|
- <Radio :label="2">学号</Radio>
|
25
|
|
- <Radio :label="3">手机号码</Radio>
|
26
|
|
- <Radio :label="4">身份证号码</Radio>
|
27
|
|
- </RadioGroup>
|
28
|
|
- </FormItem>
|
29
|
21
|
</Form>
|
30
|
22
|
</div>
|
31
|
23
|
<div class="footer">
|
|
@@ -50,8 +42,7 @@ export default {
|
50
|
42
|
adminInfo: {
|
51
|
43
|
regionid: "",
|
52
|
44
|
appPackage: "",
|
53
|
|
- authUrl: "",
|
54
|
|
- singleType: 1
|
|
45
|
+ authUrl: ""
|
55
|
46
|
},
|
56
|
47
|
userInfo: {},
|
57
|
48
|
showLoading: false
|
|
@@ -80,8 +71,7 @@ export default {
|
80
|
71
|
if (res.obj) {
|
81
|
72
|
this.adminInfo = {
|
82
|
73
|
appPackage: res.obj.appPackage,
|
83
|
|
- authUrl: res.obj.authUrl,
|
84
|
|
- singleType: res.obj.singleType
|
|
74
|
+ authUrl: res.obj.authUrl
|
85
|
75
|
};
|
86
|
76
|
}
|
87
|
77
|
} else {
|
|
@@ -99,8 +89,7 @@ export default {
|
99
|
89
|
objectid: this.powerParams.objectid,
|
100
|
90
|
regionid: this.powerParams.objectid,
|
101
|
91
|
appPackage: this.adminInfo.appPackage,
|
102
|
|
- authUrl: this.adminInfo.authUrl,
|
103
|
|
- singleType: this.adminInfo.singleType
|
|
92
|
+ authUrl: this.adminInfo.authUrl
|
104
|
93
|
};
|
105
|
94
|
this.showLoading = true;
|
106
|
95
|
autoapp_edit(form).then((res) => {
|