123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- import { routers, viewImage, sharePage, isFn, getGlobalVal } from '../../../utils/util.js'
- import { MyWishBook, OthersWishBook, WishHelp } from '../../../utils/api.js'
- const { navigateTo, redirectTo, navigateBack } = routers()
- const { globalData, hasLibraryService, hasVipService } = getApp()
- const { baseImgUrl, qrcodeInvalidToastText } = globalData
- Page({
-
- data: {
- baseImgUrl,
- isLoaded: 0,
- isShowWishModal: 0,
- navIndex: 0,
- navList: [
- {
- text: '我的心愿',
- num: 0,
- pageNo: 1,
- pageSize: 10,
- isAll: 0,
- list: [],
- nodataArray: {
- text: '暂没有心愿书单',
- image: '../../../assets/nodata_4.png',
- hasNodataBtn: 1,
- btnText: '去书库看看'
- }
- },
- {
- text: '他们的心愿',
- num: 0,
- pageNo: 1,
- pageSize: 10,
- isAll: 0,
- list: [],
- nodataArray: {
- text: '暂没有心愿书单',
- image: '../../../assets/nodata_5.png',
- hasNodataBtn: 1,
- btnText: '去书库看看'
- }
- }
- ],
- hotBooks: [
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]
- },
-
- onLoad: function (options) {
- options.vipId = getGlobalVal('vipId', `vipId_${getGlobalVal('userId')}`) || ''
- options.libId = getGlobalVal('library').id || ''
- this.setData({ options })
- this.getData(res => {
- this.setData({ isLoaded: 1 })
- })
- const isShowWishModal = getGlobalVal('wishModal')
- if (!isShowWishModal) {
- this.setData({ isShowWishModal: 1 })
- }
- },
-
- onReady: function () {
- const obj = { navigateTo, redirectTo, navigateBack, viewImage }
- for (const i in obj) {
- this[i] = obj[i]
- }
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- const { navList, navIndex } = this.data
- navList[navIndex]['pageNo'] = 1
- this.getData(res => {
- wx.stopPullDownRefresh()
- })
- },
-
- onReachBottom: function () {
- const { navList, navIndex } = this.data
- const { isAll } = navList[navIndex]
- if (isAll) {
- return
- }
- this.getData()
- },
-
- onShareAppMessage: function () {
- const { index } = e.target.dataset
- const { navList, navIndex, options } = this.data
- const { vipId, libId } = options
- const { isbn13 } = navList[navIndex]['list'][index]
- const { child_name = '' } = getGlobalVal('vip', `vip_${getGlobalVal('userId')}`)
- return {
- title: `${child_name}的心愿书单详情`,
- path: `parents/pages/wish_detail/wish_detail?type=10&vipId=${vipId}&isbn13=${isbn13}&libId=${libId}`,
- success: res => {
- wx.showToast({
- title: '转发成功',
- icon: 'success'
- })
- }
- }
- },
-
- getData: function (cb) {
- const continuousFn = { fn: this.getData, param: { ...arguments } }
- const { navList, navIndex, options } = this.data
- const { pageNo, pageSize, list } = navList[navIndex]
- const { vipId, libId } = options
- const Fn = [MyWishBook, OthersWishBook]
- const data = [{ vipId, libId, pageNo, pageSize }, { libId, pageNo, pageSize }]
- if (navIndex == 0 && !hasVipService()) {
- cb && cb()
- return
- }
- if (!hasLibraryService()) {
- cb && cb()
- return
- }
- Fn[navIndex]({ data: data[navIndex], continuousFn }).then(res => {
- const newList = res.data.list
- let listTemp = []
- if (pageNo == 1) {
- listTemp = [].concat(newList)
- } else {
- listTemp = [].concat(list, newList)
- }
- navList[navIndex]['list'] = listTemp
- navList[navIndex]['pageNo'] = newList.length == pageSize ? pageNo + 1 : pageNo
- navList[navIndex]['isAll'] = newList.length < pageSize
- this.setData({ navList })
- cb && cb(res)
- }).catch(res => {
- cb && cb(res)
- })
- },
-
- selectNavCtl: function (e) {
- const { index } = e.currentTarget.dataset
- const { navIndex, navList } = this.data
- if (navIndex == index) return
- this.setData({ navIndex: index })
- const { list } = navList[index]
- if (list.length == 0) {
- this.getData()
- }
- },
-
- toggleWishModal: function () {
- this.setData({ isShowWishModal: 0 })
- wx.setStorageSync('wishModal', 1)
- },
-
- helpWishCtl: function (e) {
- const continuousFn = { fn: this.helpWishCtl, param: { ...arguments } }
- if (!hasVipService() || !hasLibraryService()) return
- const { index } = e.currentTarget.dataset
- const { navIndex, navList, options } = this.data
- const { vipId, libId } = options
- const { list } = navList[navIndex]
- const { isbn13 } = list[index]
- WishHelp({ data: { vipId, isbn13 }, continuousFn }).then(res => {
- wx.showToast({
- title: '助力成功',
- icon: 'none'
- })
- })
- },
-
- nodataBtnCtl: function () {
- redirectTo({ url: 'parents/pages/home/home', zindex: 3 })
- }
- })
|