wangtao 2 년 전
부모
커밋
9e4fdd415c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/login.vue

+ 2 - 2
src/views/login.vue

@@ -207,14 +207,14 @@ export default {
       this.$store.dispatch("LoginERP", data).then((res) => {
         this.$router.push({ path: "/index"}).catch(()=>{});
       }).catch((err) => {
-        location.href = '';
+        location.href = '/dmweb/#/';
       });
     },
     handleLoginSaaS(data) {//SaaS登录
       this.$store.dispatch("LoginSaaS", data).then((res) => {
         this.$router.push({ path: "/index"});
       }).catch((err) => {
-        location.href = '';
+        location.href = '/dmweb/#/';
       });
     }
   }