Selaa lähdekoodia

Merge branch 'wx-repair' of http://git.dashitech.com/seimin/zuel-itsm-3.0.2 into wx-repair

seimin 1 vuosi sitten
vanhempi
commit
c914b36a0e
1 muutettua tiedostoa jossa 13 lisäystä ja 18 poistoa
  1. 13 18
      src/views/Login.vue

+ 13 - 18
src/views/Login.vue

@@ -185,22 +185,13 @@ export default {
185 185
     zlogin() {
186 186
       console.log(this);
187 187
       var that = this;
188
-      var ssoStr = "";
189
-      var ssoJson;
190
-      if (this.isSSo) {
191
-        ssoStr = location.search
192
-          .replace("?", "")
193
-          .split("&")[0]
194
-          .split("=")[1];
195
-        ssoStr = decode(decodeURIComponent(ssoStr));
196
-        ssoJson = JSON.parse(ssoStr);
197
-      }
198 188
       var postData = this.isSSo
199
-        ? { username: ssoJson.a, password: ssoJson.r, t: false }
189
+        ? { type: 'req' }
200 190
         : { username: this.zhanghao, password: this.mima };
201
-      this.$http.post("service/auth/reqlogin", postData).then(res => {
191
+      this.$http.post("service/auth/sslLogin", postData).then(res => {
202 192
         that.loading = false;
203 193
         if (res.data && res.data.state == 200) {
194
+          localStorage.clear();
204 195
           localStorage.setItem(
205 196
             "loginUser",
206 197
             JSON.stringify(res.data.data.requester)
@@ -216,7 +207,16 @@ export default {
216 207
           } else {
217 208
             this.loginNext(res.data.data.requester);
218 209
           }
210
+        }else if (res.data && res.data.state == 501) {
211
+          // 判断是否有区域地点或联系电话或校区,没有则需要补充
212
+          var requester = JSON.parse(localStorage.getItem('loginUser')) || {};
213
+          if (!requester.place || !requester.mphone || !requester.branch) {
214
+            this.$router.push({ path: "/supplementary" });
215
+          } else {
216
+            this.loginNext(requester);
217
+          }
219 218
         } else {
219
+          localStorage.clear();
220 220
           that
221 221
             .$createDialog({
222 222
               type: "alert",
@@ -240,12 +240,7 @@ export default {
240 240
     }
241 241
   },
242 242
   created() {
243
-    localStorage.clear();
244
-    if (location.search.length > 0) {
245
-      this.isSSo = Boolean(this.getQueryString("t"));
246
-    } else {
247
-      this.isSSo = false;
248
-    }
243
+    this.isSSo = true;
249 244
     if (this.isSSo) {
250 245
       this.zlogin();
251 246
     }