Browse Source

web端单点登录

pengjing 4 months ago
parent
commit
736c290e62
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main/resources/static/app/main/default.js

+ 2 - 1
src/main/resources/static/app/main/default.js

@@ -8,7 +8,8 @@
                 if (res.data.success && res.data.item) {
                 if (res.data.success && res.data.item) {
                     window.location.href = res.data.item;
                     window.location.href = res.data.item;
                 } else {
                 } else {
-                    $scope.showMsg('提示', res.data.msg);
+                    if (res.data.msg)
+                        $scope.showMsg('提示', res.data.msg);
                     $state.go('login');
                     $state.go('login');
                 }
                 }
             }, () => {
             }, () => {