|
@@ -35,17 +35,17 @@ export default {
|
35
|
35
|
zhanghao: "",
|
36
|
36
|
mima: "",
|
37
|
37
|
requesterLgoinType: "",
|
38
|
|
- isSSo: true, // 是否单点登录
|
|
38
|
+ isSSo: true // 是否单点登录
|
39
|
39
|
};
|
40
|
40
|
},
|
41
|
41
|
components: {
|
42
|
|
- LoadIng,
|
|
42
|
+ LoadIng
|
43
|
43
|
},
|
44
|
44
|
methods: {
|
45
|
45
|
// 登陆
|
46
|
46
|
login() {
|
47
|
47
|
var that = this;
|
48
|
|
- that.$http.post("service/auth/wechatAuth", {}).then((res) => {
|
|
48
|
+ that.$http.post("service/auth/wechatAuth", {}).then(res => {
|
49
|
49
|
if (res.data.url) {
|
50
|
50
|
window.location.href = res.data.url;
|
51
|
51
|
} else {
|
|
@@ -67,10 +67,10 @@ export default {
|
67
|
67
|
that.login();
|
68
|
68
|
} else {
|
69
|
69
|
var code = {
|
70
|
|
- code: url[1],
|
|
70
|
+ code: url[1]
|
71
|
71
|
// name: "微信报修"
|
72
|
72
|
};
|
73
|
|
- that.$http.post("service/auth/wechatLoginEncrypt", code).then((res) => {
|
|
73
|
+ that.$http.post("service/auth/wechatLoginEncrypt", code).then(res => {
|
74
|
74
|
if (res.data.state == 200) {
|
75
|
75
|
if (res.data.user) {
|
76
|
76
|
localStorage.setItem(
|
|
@@ -84,7 +84,7 @@ export default {
|
84
|
84
|
.$createDialog({
|
85
|
85
|
type: "alert",
|
86
|
86
|
title: "您的账号被删除,请联系管理员",
|
87
|
|
- icon: "cubeic-alert",
|
|
87
|
+ icon: "cubeic-alert"
|
88
|
88
|
})
|
89
|
89
|
.show();
|
90
|
90
|
} else {
|
|
@@ -92,7 +92,7 @@ export default {
|
92
|
92
|
.$createDialog({
|
93
|
93
|
type: "alert",
|
94
|
94
|
title: res.data.remarks,
|
95
|
|
- icon: "cubeic-alert",
|
|
95
|
+ icon: "cubeic-alert"
|
96
|
96
|
})
|
97
|
97
|
.show();
|
98
|
98
|
}
|
|
@@ -105,34 +105,33 @@ export default {
|
105
|
105
|
this.$http
|
106
|
106
|
.post("service/sysinfo/data/fetchDataList/systemConfiguration", {
|
107
|
107
|
idx: 0,
|
108
|
|
- sum: 1000,
|
|
108
|
+ sum: 1000
|
109
|
109
|
})
|
110
|
|
- .then((result) => {
|
|
110
|
+ .then(result => {
|
111
|
111
|
if (result.data.status == 200) {
|
112
|
112
|
let list = result.data.list;
|
113
|
|
- let repairMain = list.find((v) => v.keyconfig == "repairMain"); //报修主体
|
114
|
|
- let incidentWithConsumable = list.find(
|
115
|
|
- (v) => v.keyconfig == "incidentWithConsumable"
|
116
|
|
- ); //是否绑定耗材
|
117
|
|
- let wxIncidentWithCmdb = list.find(
|
118
|
|
- (v) => v.keyconfig == "wxIncidentWithCmdb"
|
119
|
|
- ); //是否绑定资产
|
120
|
|
- let reqHasCategory = list.find(
|
121
|
|
- (v) => v.keyconfig == "reqHasCategory"
|
122
|
|
- ); //获取是否自动建单
|
123
|
|
- localStorage.setItem(
|
124
|
|
- "repairMain",
|
125
|
|
- JSON.stringify(repairMain)
|
126
|
|
- );
|
127
|
|
- localStorage.setItem(
|
128
|
|
- "incidentWithConsumable",
|
129
|
|
- incidentWithConsumable.valueconfig
|
130
|
|
- );
|
131
|
|
- localStorage.setItem(
|
132
|
|
- "wxIncidentWithCmdb",
|
133
|
|
- wxIncidentWithCmdb.valueconfig
|
134
|
|
- );
|
135
|
|
- localStorage.setItem("reqHasCategory", JSON.stringify(reqHasCategory));
|
|
113
|
+ list.forEach(v => {
|
|
114
|
+ switch (v.keyconfig) {
|
|
115
|
+ case "repairMain": //报修主体
|
|
116
|
+ localStorage.setItem("repairMain", JSON.stringify(v));
|
|
117
|
+ break;
|
|
118
|
+ case "incidentWithConsumable": //是否绑定耗材
|
|
119
|
+ localStorage.setItem("incidentWithConsumable", v.valueconfig);
|
|
120
|
+ break;
|
|
121
|
+ case "wxIncidentWithCmdb": //是否绑定资产
|
|
122
|
+ localStorage.setItem("wxIncidentWithCmdb", v.valueconfig);
|
|
123
|
+ break;
|
|
124
|
+ case "reqHasCategory": //获取是否自动建单
|
|
125
|
+ localStorage.setItem("reqHasCategory", v);
|
|
126
|
+ break;
|
|
127
|
+ case "wxBxQuestions": //微信报修常见问题链接
|
|
128
|
+ localStorage.setItem("wxBxQuestions", v.valueconfig);
|
|
129
|
+ break;
|
|
130
|
+ case "wxGuide": //微信报修服务指南链接
|
|
131
|
+ localStorage.setItem("wxGuide", v.valueconfig);
|
|
132
|
+ break;
|
|
133
|
+ }
|
|
134
|
+ });
|
136
|
135
|
this.$router.push({ path: "/main" });
|
137
|
136
|
}
|
138
|
137
|
});
|
|
@@ -140,7 +139,7 @@ export default {
|
140
|
139
|
},
|
141
|
140
|
// 获取报修人登录方式
|
142
|
141
|
getLoginType() {
|
143
|
|
- this.$http.post("service/wechat/getLoginType", {}).then((result) => {
|
|
142
|
+ this.$http.post("service/wechat/getLoginType", {}).then(result => {
|
144
|
143
|
if (result.data.status == 200) {
|
145
|
144
|
this.requesterLgoinType = result.data.data;
|
146
|
145
|
window.localStorage.setItem(
|
|
@@ -162,14 +161,17 @@ export default {
|
162
|
161
|
var ssoStr = "";
|
163
|
162
|
var ssoJson;
|
164
|
163
|
if (this.isSSo) {
|
165
|
|
- ssoStr = location.search.replace("?", "").split("&")[0].split("=")[1];
|
|
164
|
+ ssoStr = location.search
|
|
165
|
+ .replace("?", "")
|
|
166
|
+ .split("&")[0]
|
|
167
|
+ .split("=")[1];
|
166
|
168
|
ssoStr = decode(decodeURIComponent(ssoStr));
|
167
|
169
|
ssoJson = JSON.parse(ssoStr);
|
168
|
170
|
}
|
169
|
171
|
var postData = this.isSSo
|
170
|
172
|
? { username: ssoJson.a, password: ssoJson.r, t: false }
|
171
|
173
|
: { username: this.zhanghao, password: this.mima };
|
172
|
|
- this.$http.post("service/auth/reqlogin", postData).then((res) => {
|
|
174
|
+ this.$http.post("service/auth/reqlogin", postData).then(res => {
|
173
|
175
|
that.loading = false;
|
174
|
176
|
if (res.data && res.data.state == 200) {
|
175
|
177
|
localStorage.setItem(
|
|
@@ -194,7 +196,7 @@ export default {
|
194
|
196
|
title: "系统错误",
|
195
|
197
|
content: "请稍后再试",
|
196
|
198
|
icon: "cubeic-wrong",
|
197
|
|
- color: "red",
|
|
199
|
+ color: "red"
|
198
|
200
|
})
|
199
|
201
|
.show();
|
200
|
202
|
}
|
|
@@ -208,7 +210,7 @@ export default {
|
208
|
210
|
return unescape(r[2]);
|
209
|
211
|
}
|
210
|
212
|
return null;
|
211
|
|
- },
|
|
213
|
+ }
|
212
|
214
|
},
|
213
|
215
|
created() {
|
214
|
216
|
localStorage.clear();
|
|
@@ -221,7 +223,7 @@ export default {
|
221
|
223
|
this.zlogin();
|
222
|
224
|
}
|
223
|
225
|
this.getLoginType();
|
224
|
|
- },
|
|
226
|
+ }
|
225
|
227
|
};
|
226
|
228
|
</script>
|
227
|
229
|
|