Bladeren bron

添加index.html

seimin 2 jaren geleden
bovenliggende
commit
2f85d0eb16
1 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 3 3
      src/App.vue

+ 3 - 3
src/App.vue

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