From 76c4e3ed500c261cd89e5d0b302b33f064cf0923 Mon Sep 17 00:00:00 2001 From: litian <2804272236@qq.com> Date: 星期二, 31 十二月 2024 17:59:45 +0800 Subject: [PATCH] 题目 --- src/books/aviationEtiquette/view/components/index.vue | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/books/aviationEtiquette/view/components/index.vue b/src/books/aviationEtiquette/view/components/index.vue index 1d41f8d..bf700c0 100644 --- a/src/books/aviationEtiquette/view/components/index.vue +++ b/src/books/aviationEtiquette/view/components/index.vue @@ -13,6 +13,7 @@ <chapterTwo v-if="showCatalogList.indexOf(3) > -1" :showPageList="loadPageList"></chapterTwo> <chapterThree v-if="showCatalogList.indexOf(4) > -1" :showPageList="loadPageList"></chapterThree> <chapterFour v-if="showCatalogList.indexOf(5) > -1" :showPageList="loadPageList"></chapterFour> + <chapterFive v-if="showCatalogList.indexOf(6) > -1" :showPageList="loadPageList"></chapterFive> </div> </div> </template> @@ -23,6 +24,7 @@ import chapterTwo from "./chpater002.vue"; import chapterThree from "./chapter003.vue"; import chapterFour from "./chapter004.vue"; + import chapterFive from "./chapter005.vue"; import NoteIcon from "@/assets/images/biji.png"; import _ from "lodash"; import Swiper from "swiper/bundle"; @@ -33,7 +35,7 @@ name: "pageContent", data() { return { - catalogLength: 5, // 鎬荤珷鑺傛暟 + catalogLength: 6, // 鎬荤珷鑺傛暟 showCatalogList: [], // 鏄剧ず鐨勭珷鑺� loadThreshold: 300, // 瑙﹀彂鍔犺浇闃堝�� throttleThreshold: 100, // 鑺傛祦闃堝�� @@ -712,6 +714,7 @@ chapterTwo, chapterThree, chapterFour, + chapterFive }; // 閬嶅巻鎵�鏈夌珷鑺傛枃浠� for (const key in pageData) { @@ -937,6 +940,7 @@ chapterTwo, chapterThree, chapterFour, + chapterFive, }, }; </script> -- Gitblit v1.9.1