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/#/';
       });
     }
   }