123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- //index.js
- //获取应用实例
- import {
- getOpenidSessionKey
- } from '../../utils/httpUtil';
- import {
- formatDate
- } from '../../utils/util';
- const app = getApp()
- import {
- hotInit
- } from '../../component/hot/hot';
- import {
- groupInit
- } from '../../component/group/group';
- import {
- myInit
- } from '../../component/my/my';
- import {
- followInit
- } from '../../component/follow/follow';
- // import '../../utils/hls';
- import httpRequestApi from '../../utils/APIClient';
- import httputil from '../../utils/httpUtil';
- import {
- GetQueryString
- } from '../../utils/util';
- Page({
- data: {
- tab: [
- {
- name: '我的',
- templates: 'my',
- },
- {
- name: '发现',
- templates: 'hot',
- },
- {
- name: '热团',
- templates: 'group',
- },
- // {
- // name: '动态',
- // templates: 'follow',
- // },
-
- ],
- winH: 568,
- myIndex: 1,
- followData: [],
- recommendPageNo: 1,
- recommendTotalNo: 0,
- followPageNo: 0,
- followPageTotalNo: 1,
- myData: {},
- templates: 'hot',
- title: 'index中的title',
- jurisdictionFlag: true,
- hotInput: '12345',
- mineSettingInfo: '528',
- hide: true,
- isIOS:app.globalData.isIOS,
- ifHaveMore: true
- },
- jurisdiction: function () {
- //隐藏弹框
- this.setData({
- hide: !this.data.hide
- })
- //登录页信息
- this.onShow();
- },
- //tab点击
- switcher: function ({
- currentTarget
- }) {
- if (currentTarget.dataset.index === this.data.myIndex) return;
- this.updateData(currentTarget.dataset.index);
- },
- // 根据index 更新template
- updateData: function (index) {
- let myIndex = index;
- let templates = this.data.tab[myIndex].templates;
- this.setData({
- myIndex,
- templates
- });
- if (myIndex == 0) {
- // groupInit(this);
- this.setData({
- followPageNo: 0,
- })
- myInit(this);
- }
- if (myIndex == 1) {
- this.setData({
- recommendPageNo: 1
- })
- hotInit(this);
- }
- if (myIndex == 2) {
- // this.setData({
- // followPageNo: 1
- // })
- // followInit(this);
- groupInit(this);
- }
- if (myIndex == 3) {
- // console.log(this.data.isIOS)
- myInit(this);
- }
- },
- onLoad: function (options) {
- this.uid = wx.getStorageSync('uid');
- wx.getSystemInfo({
- success: (res) => {
- this.setData({
- winH: res.windowHeight
- });
- }
- });
- if (options.index) {
- this.updateData(options.index)
- }
- hotInit(this)
- // this.init();
- },
- onShow: function () {
- wx.setNavigationBarTitle({
- title: '小学课文朗读配音'
- })
- // this.init();
- // getOpenidSessionKey((res) => {}, (error) => {
- // // console.log(error)
- // wx.navigateTo({
- // url: '../../pages/loginPage/loginPage'
- // })
- // });
- if (this.data.myIndex === 3) {
- this.getUserWorksInfo();
- }
- },
- //初始化数据
- // init: function () {
- // httputil.getOpenidSessionKey((res) => {
- // console.log('微信的用户信息', res)
-
- // }, (error) => {
- // console.log(1111111111111111)
- // // this.jurisdiction()
- // wx.navigateTo({
- // url: '../../loginPage/loginPage'
- // })
- // });
- // },
- // 获取用户信息
- getUserWorksInfo: function () {
- console.log(wx.getStorageSync('user'));
- httpRequestApi.getUserWorksInfo().success(res => {
- this.data.myData.user = res.data.data;
- this.data.myData.user.user.birthday = this.data.myData.user.user.birthday ? formatDate(res.data.data.user.birthday,3) : '2018年1月1日';
- httpRequestApi.userIntoPage('pages/index/index', '首页我的').success((res) => {})
- if(this.data.myData.user.myRead){
- this.data.myData.user.myRead.gmtCreated = formatDate(this.data.myData.user.myRead.gmtCreated,4)
- }
- this.setData({
- myData: this.data.myData,
- });
- }).fail(error => {
- console.log(error)
- })
- },
- // 触底加载
- onReachBottom: function () {
- if (this.data.myIndex === 0) {
- console.log(this.data.followPageTotalNo)
- console.log(this.data.followPageNo)
- this.setData({
- followPageNo: this.data.followPageNo + 1
- })
- if (this.data.followPageNo <= this.data.followPageTotalNo) {
- this.getFollowWorks(this.data.followPageNo, 3);
- } else {
- console.log('没有更多')
- this.setData({
- ifHaveMore: false
- })
- }
- }
- // 当前在推荐页面 加载推荐
- if (this.data.myIndex === 1) {
- console.log(this.data.recommendPageNo)
- this.setData({
- recommendPageNo: this.data.recommendPageNo + 1
- })
- if (this.data.recommendPageNo <= this.data.recommendTotalNo) {
- this.getHotRecommend(this.uid, this.data.recommendPageNo, 3);
- } else {
- console.log('没有更多')
- }
- }
-
- },
- onPullDownRefresh: function () {
- //当前在团购页下拉加载
- if (this.data.myIndex === 0) {
- groupInit(this);
- }
- wx.showNavigationBarLoading() //在标题栏中显示加载
- //模拟加载
- setTimeout(function () {
- wx.hideNavigationBarLoading() //完成停止加载
- wx.stopPullDownRefresh() //停止下拉刷新
- },1500);
- },
- // 获取全部课本
- // getBookList: function () {
- // httpRequestApi.getAllBooks(1, 10).success((res) => {
- // this.data.bookList = res.data.data.list;
- // res.data.data.list.forEach(element => {
- // this.data.selectFlag.push(true);
- // });
- // this.setData({
- // bookList: this.data.bookList
- // })
- // }).fail((error) => {
- // console.log('错误', error)
- // })
- // },
- goToMessage: function(){
- wx.navigateTo({
- url: `../../pages/social/insideMessage/insideMessage`
- });
- const str = 'hotData.unReadMessageNum';
- this.setData({
- [str]: 0
- })
- },
- toMyCollage: function(e){
- if(app.globalData.isIOS){
- wx.navigateTo({
- url: `../../pages/groupPage/my-group/my-group?title=我的助力`
- });
- }else {
- wx.navigateTo({
- url: `../../pages/groupPage/my-group/my-group?title=我的拼团`
- });
- }
-
- },
- goToFlower: function(){
- wx.navigateTo({
- url: `../../pages/social/littleFlower/littleFlower`
- });
- }
- })
|