123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- const app = getApp()
- import {
- getHotrecommendList
- } from "~/api/works"
- import reachBottom from '~/mixins/reachBottom'
- import share from '~/mixins/share'
- import {
- createStoreBindings
- } from 'mobx-miniprogram-bindings'
- import {
- store
- } from '~/store/index'
- Page({
- behaviors: [reachBottom, share],
- /**
- * 页面的初始数据
- */
- data: {
- navBarHeight: app.globalData.navBarHeight,
- background: ['demo-text-1', 'demo-text-2', 'demo-text-3'],
- currentType: '1',
- // 控制一级分类是否固定
- isFixed: false
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onShow() {
- if (typeof this.getTabBar === 'function') {
- this.getTabBar().setData({
- selected: 1
- })
- }
- getApp().callBack = (res) => {
- this.getLocUserInfo()
- this.resetData()
- }
- let uid = wx.getStorageSync('uid')
- /* if (uid) {
- this.getLocUserInfo()
- this.resetData()
- } else {
- getApp().callBack = (res) => {
- this.getLocUserInfo()
- this.resetData()
- }
- } */
- },
- onUnload() {
- this.storeBindings.destroyStoreBindings()
- },
- async getLocUserInfo() {
- this.storeBindings = createStoreBindings(this, {
- store,
- fields: {
- userInfo: 'userInfo'
- },
- })
- this.storeBindings.updateStoreBindings()
- },
- loadMore() {
- if (this.data.currentType == '1') {
- this.getData(getHotrecommendList, {
- grade: this.data.userInfo.grade
- })
- } else if (this.data.currentType == '2') {
- this.getData(getHotrecommendList, {
- grade: 'PRESCHOOL'
- })
- }
- },
- jumpChildClassify() {
- wx.navigateTo({
- url: `/pages/childClassify/index?type=class&id=123`,
- })
- },
- jumpSearch() {
- wx.navigateTo({
- url: '/pages/childClassify/index?type=search',
- })
- },
- /**
- * 监听页面滚动事件
- */
- onPageScroll(e) {
- if (e.scrollTop >= 103 && !this.data.isFixed) {
- this.setData({
- isFixed: true
- })
- } else if (e.scrollTop < 103 && this.data.isFixed) {
- this.setData({
- isFixed: false
- })
- }
- },
- onReachBottom() {
- this.loadMore()
- },
- selectType({
- target
- }) {
- if (target.dataset.type) {
- this.setData({
- currentType: target.dataset.type
- })
- this.resetData()
- this.selectComponent('#worksList').resetAudio()
- }
- },
- })
|