From bd7b08a5e9a071a8155bd8fea95592af6b7dfe93 Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期五, 21 二月 2025 10:56:23 +0800 Subject: [PATCH] 视频销售方式 --- pages/bookExhibitionDetails/index.js | 69 +++++++++++++++------------------- 1 files changed, 31 insertions(+), 38 deletions(-) diff --git a/pages/bookExhibitionDetails/index.js b/pages/bookExhibitionDetails/index.js index 8a752fa..0642cf8 100644 --- a/pages/bookExhibitionDetails/index.js +++ b/pages/bookExhibitionDetails/index.js @@ -1,5 +1,8 @@ // pages/bookExhibitionDetails/index.js const app = getApp() +import { + loginInfo +} from '../../assets/js/login'; Page({ /** @@ -17,7 +20,6 @@ bookExhibitionList: [], navBarHeight: '', barHeight: '', - subtitleName: '', totalSize: '', passId: '', isMore: null, @@ -27,8 +29,6 @@ * 鐢熷懡鍛ㄦ湡鍑芥暟--鐩戝惉椤甸潰鍔犺浇 */ onLoad(options) { - - const systInfo = wx.getSystemInfoSync(); const menu = wx.getMenuButtonBoundingClientRect(); // 鑳跺泭淇℃伅 const navBarHeight = (menu.top - systInfo.statusBarHeight) * 2 + menu.height; // 瀵艰埅鏍忛珮搴� @@ -36,23 +36,26 @@ navBarHeight: navBarHeight, barHeight: systInfo.statusBarHeight, }) - console.log(); - - this.setData({ - bookName: options.bookName, - subtitleName: options.subtitleName, passId: options.id }) + const token = wx.getStorageSync(app.config.tokenKey) + if (!token) { + loginInfo(app, (data) => { + if (data) { + this.bookExhibitionGet(this.data.passId) + this.getBookExhibitionDetails() + } else { + this.bookExhibitionGet(this.data.passId) + this.getBookExhibitionDetails() + } + }) - const passId = options.id + } else { + this.bookExhibitionGet(this.data.passId) + this.getBookExhibitionDetails() + } - this.bookExhibitionGet(passId) - this.getBookExhibitionDetails() - - wx.setNavigationBarTitle({ - title: this.data.subtitleName - }); }, /** @@ -100,19 +103,14 @@ /** * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜� */ - onShareAppMessage() { - - }, + onShareAppMessage() {}, + onShareTimeline() {}, bookExhibitionGet(passId) { this.setData({ loading: true, hidden: true, }) - wx.showLoading({ - title: '鍔犺浇涓�...', - }) - console.log(passId, 8988989); app.MG.store.getProductDetail({ storeInfo: 'jsek_bookFair', //鍟嗗搧搴� path: '*', //璺緞 @@ -126,24 +124,27 @@ Creator: [] } }).then(res => { - console.log(res.datas.datas.Creator.Name, 'res'); + console.log(res.datas, 'res'); this.setData({ bookName: res.datas.name, bookBeginDate: res.datas.beginDate, bookCreator: res.datas.datas.Creator.Name, bookContent: res.datas.content, - bookImage: res.datas.icon - }); - wx.hideLoading() - this.setData({ + bookImage: res.datas.icon || '/static/images/bookExhibitionList/banner.png', loading: false, hidden: false, - }) + }); + if (res.datas.subtitle == undefined) { + res.datas.subtitle = ""; + } + let title = res.datas.subtitle + this.data.bookName + wx.setNavigationBarTitle({ + title: title + }); }) }, //涔﹀睍璇︽儏鎺ュ彛 getBookExhibitionDetails() { - app.MG.store.getProductList({ path: '*', storeInfo: 'jsek_bookFair', @@ -161,13 +162,9 @@ Creator: [] } }).then(res => { - this.setData({ bookExhibitionList: res.datas, - totalSize: res.total - }) - - this.setData({ + totalSize: res.total, loading: false, hidden: false, }) @@ -185,10 +182,7 @@ }, // 瑙﹀簳鍑芥暟 onReachBottom() { - console.log(this.data.bookExhibitionList.length); - console.log(this.data.totalSize); if (this.data.bookExhibitionList.length < this.data.totalSize) { - console.log(11111); this.setData({ isMore: true, start: this.data.start + 1 @@ -202,7 +196,6 @@ this.setData({ isMore: false }) - console.log('300'); }, 300) } }, -- Gitblit v1.9.1