소스 검색

添加index.html

seimin 2 년 전
부모
커밋
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
     },