From b77e8e776af4d81e748e9e21d51b64a11085a195 Mon Sep 17 00:00:00 2001 From: zhongshujie <2862698242@qq.com> Date: 星期四, 19 十二月 2024 10:49:11 +0800 Subject: [PATCH] 未提交退出提示 --- packagePersonal/pages/myCollection/index.js | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/packagePersonal/pages/myCollection/index.js b/packagePersonal/pages/myCollection/index.js index d47e1ac..ad65241 100644 --- a/packagePersonal/pages/myCollection/index.js +++ b/packagePersonal/pages/myCollection/index.js @@ -184,8 +184,16 @@ const { book } = e.currentTarget.dataset; + let url = '' + if (this.data.activeName == 'FavoriteBookCity') { + url = `/packageBookService/pages/bookServices/detail/index?id=${book.id}&name=${book.name}` + } else if (this.data.activeName == 'Favoriteclass') { + url = `/pages/digitalCourses/digitalCoursesDetails/index?id=${book.id}` + } else if (this.data.activeName == 'FavoriteTextBooks') { + url = `/pages/digitalTextbooks/digitalTextbooksDetails/index?id=${book.id}` + } wx.navigateTo({ - url: `/packageBookService/pages/bookServices/detail/index?id=${book.id}&name=${book.name}`, + url: url, }); }, -- Gitblit v1.9.1