seimin лет назад: 2
Родитель
Сommit
2f85d0eb16
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/App.vue

+ 3 - 3
src/App.vue

@@ -34,13 +34,13 @@ export default {
34 34
     goTo(type) {
35 35
       switch (type) {
36 36
         case "service":
37
-          location.href = this.baseUrl + "/serviceApp";
37
+          location.href = this.baseUrl + "/serviceApp/index.html";
38 38
           break;
39 39
         case "user":
40
-          location.href = this.baseUrl + "/user";
40
+          location.href = this.baseUrl + "/user/index.html";
41 41
           break;
42 42
         case "req":
43
-          location.href = this.baseUrl + "/req";
43
+          location.href = this.baseUrl + "/req/index.html";
44 44
           break;
45 45
       }
46 46
     },