Skip to content

Commit 3b4978a

Browse files
committed
Merge branch 'master' of github.com:JX3BOX/pvx
2 parents 1b9a640 + 8d6189c commit 3b4978a

14 files changed

Lines changed: 32 additions & 40 deletions

File tree

Lines changed: 11 additions & 18 deletions
Loading
Lines changed: 3 additions & 21 deletions
Loading

src/components/Nav_v5.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ export default {
8989
if (str === "pvg") str = arr[1];
9090
if (str === "homeland") str = "blueprint";
9191
// if (str === "body") str = "exterior";
92+
// 处理 /pvx/codex/* 路径
93+
if (str === "pvx" && arr[1] === "codex") {
94+
if (arr[2] === "adventure") str = "codextreature";
95+
if (arr[2] === "achievement") str = "codexachievement";
96+
}
9297
return str;
9398
},
9499
client() {

src/views/adventure/Adventure.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</router-view>
1212
</div>
1313
</Main>
14+
<CommonFooter></CommonFooter>
1415
</div>
1516
</template>
1617

src/views/body/Body.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<Main :class="navStatusClass" :withoutRight="true" :withoutLeft="true" :withoutBread="true">
66
<div class="m-main"><router-view></router-view></div>
77
</Main>
8+
<CommonFooter></CommonFooter>
89
</div>
910
</template>
1011

src/views/book/Book.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</div>
99
<PvxBacktop color="#fff" :bgColor="bgColor"></PvxBacktop>
1010
</Main>
11+
<CommonFooter></CommonFooter>
1112
</div>
1213
</template>
1314

src/views/face/Face.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<Main :class="navStatusClass" :withoutRight="true" :withoutLeft="true" :withoutBread="true">
66
<div class="m-main"><router-view></router-view></div>
77
</Main>
8+
<CommonFooter></CommonFooter>
89
</div>
910
</template>
1011

src/views/furniture/Furniture.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
</div>
1616
<!-- <Footer></Footer> -->
1717
</Main>
18+
<CommonFooter></CommonFooter>
1819
</div>
1920
</template>
2021

src/views/homeland/Homeland.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</div>
99
<PvxBacktop color="#fff" bgColor="#6b52ff"></PvxBacktop>
1010
</Main>
11+
<CommonFooter></CommonFooter>
1112
</div>
1213
</template>
1314

src/views/horse/Horse.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
</div>
99
<PvxBacktop color="#fff" bgColor="#d16400"></PvxBacktop>
1010
</Main>
11+
<CommonFooter></CommonFooter>
12+
1113
</div>
14+
1215
</template>
1316

1417
<script>

0 commit comments

Comments
 (0)