From af32b4dea68d727f4f7fe3d594282931e973f430 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 15 五月 2024 16:48:42 +0800 Subject: [PATCH] 视频资源 --- src/books/childHealth/view/content/index.vue | 34 ++++++++++++++++++++++++++++------ 1 files changed, 28 insertions(+), 6 deletions(-) diff --git a/src/books/childHealth/view/content/index.vue b/src/books/childHealth/view/content/index.vue index 5f88fe5..e2f158d 100644 --- a/src/books/childHealth/view/content/index.vue +++ b/src/books/childHealth/view/content/index.vue @@ -3,7 +3,6 @@ <div class="page-content"> <pageHeader v-if="showCatalogList.indexOf(0) > -1"></pageHeader> <chapterOne v-if="showCatalogList.indexOf(1) > -1"></chapterOne> - <chapterOne v-if="showCatalogList.indexOf(1) > -1"></chapterOne> <chapterTwo v-if="showCatalogList.indexOf(2) > -1"></chapterTwo> <chapterThree v-if="showCatalogList.indexOf(3) > -1"></chapterThree> <chapterFour v-if="showCatalogList.indexOf(4) > -1"></chapterFour> @@ -37,9 +36,7 @@ import chapterEleven from "./components/chapter011.vue"; import chapterTwelve from "./components/chapter012.vue"; import chapterThirteen from "./components/chapter013.vue"; - import _ from "lodash"; - export default { data() { return { @@ -50,6 +47,19 @@ previousScrollTop: 0, throttledScrollHandler: null }; + }, + watch: { + showCatalogList: { + handler(newVal) { + console.log("鏄剧ず绔犺妭", newVal); + if (this.$store.state.qiankun && this.$store.state.qiankun.catalogChange) { + // 璋冪敤鐖跺眰鏂规硶 + this.$store.state.qiankun.catalogChange({ + showCatalogList: newVal + }); + } + } + } }, mounted() { // 榛樿鍔犺浇绔犺妭 @@ -62,12 +72,16 @@ ); // 鎻愪緵椤甸潰璺宠浆鍔熻兘 if (this.setGlobalState) { + console.log("setGlobalState"); + // 瀹氫箟瀛愬眰鏂规硶 this.setGlobalState({ gotoPage: (catalog, page) => { + console.log(catalog, page, "gotoPage锛歝atalog, page"); this.gotoPage(catalog, page); } }); } + // 娴嬭瘯椤甸潰璺宠浆 // setTimeout(() => { // this.gotoPage(5, 100); @@ -77,7 +91,6 @@ scrollFun(e) { // 鍒ゆ柇鍚戜笂婊氬姩杩樻槸鍚戜笅婊氬姩 if (event.target.scrollTop > this.previousScrollTop) { - console.log("鍚戜笅婊氬姩"); const currentScrollTop = event.target.scrollTop + event.target.offsetHeight; if ( @@ -100,7 +113,6 @@ } } } else if (event.target.scrollTop < this.previousScrollTop) { - console.log("鍚戜笂婊氬姩"); const currentScrollTop = event.target.scrollTop; if (currentScrollTop <= this.loadThreshold) { // 鍒拌揪闃堝�� @@ -114,9 +126,19 @@ } } } - console.log(this.showCatalogList); + // showCatalogList 褰撳墠鏄剧ず鐨勪笁涓珷鑺傦紝watch鐩戝惉浼犻�掔粰涓诲簲鐢� + // console.log(this.showCatalogList); // 鏇存柊涓婁竴娆℃粴鍔ㄧ殑浣嶇疆 this.previousScrollTop = event.target.scrollTop; + + // 杩斿洖椤电爜鍜岀珷鑺備俊鎭� + if (this.$store.state.qiankun && this.$store.state.qiankun.pageChange) + this.$store.state.qiankun.pageChange({ + page: 100, + catalog: 5, + catalogId: "", + catalogName: "" + }); }, gotoPage(catalog, page) { if (catalog >= 0 && catalog <= this.catalogLength) { -- Gitblit v1.9.1