浏览代码

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

seimin 1 年之前
父节点
当前提交
c914b36a0e
共有 1 个文件被更改,包括 13 次插入18 次删除
  1. 13 18
      src/views/Login.vue

+ 13 - 18
src/views/Login.vue

@@ -185,22 +185,13 @@ export default {
185
     zlogin() {
185
     zlogin() {
186
       console.log(this);
186
       console.log(this);
187
       var that = this;
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
       var postData = this.isSSo
188
       var postData = this.isSSo
199
-        ? { username: ssoJson.a, password: ssoJson.r, t: false }
189
+        ? { type: 'req' }
200
         : { username: this.zhanghao, password: this.mima };
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
         that.loading = false;
192
         that.loading = false;
203
         if (res.data && res.data.state == 200) {
193
         if (res.data && res.data.state == 200) {
194
+          localStorage.clear();
204
           localStorage.setItem(
195
           localStorage.setItem(
205
             "loginUser",
196
             "loginUser",
206
             JSON.stringify(res.data.data.requester)
197
             JSON.stringify(res.data.data.requester)
@@ -216,7 +207,16 @@ export default {
216
           } else {
207
           } else {
217
             this.loginNext(res.data.data.requester);
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
         } else {
218
         } else {
219
+          localStorage.clear();
220
           that
220
           that
221
             .$createDialog({
221
             .$createDialog({
222
               type: "alert",
222
               type: "alert",
@@ -240,12 +240,7 @@ export default {
240
     }
240
     }
241
   },
241
   },
242
   created() {
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
     if (this.isSSo) {
244
     if (this.isSSo) {
250
       this.zlogin();
245
       this.zlogin();
251
     }
246
     }