// pages/luckDraw/prize.js import LuckDraw from '../../api/luck-draw' import { parseTime } from '../../utils/util'; import {getMobileCache, getPhoneNumber as getPhoneNumberSync} from '../../utils/user' Page({ /** * 页面的初始数据 */ data: { page: 1, pageSize: 10, lock: false, noResult: false, noMore: false, isLogin: false, mobileTop: 'TONY WU', couponNum: 0, productNum: 0, goodsItemList: [] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.setData({ isLogin: getMobileCache() != '' }) if(this.data.isLogin){ this.getUserPrizeList(); } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { }, getUserPrizeList: function() { LuckDraw.getUserPrizeList({ page: this.data.page, pageSize: this.data.pageSize, mobile: "16602120168", goodsType: 2 }).then(res => { if (res.code == 200) { this.uaerPrizeListView(res.data) } this.data.lock = false }).catch(_ => { this.data.lock = false }) }, uaerPrizeListView: function(data) { if (!Array.isArray(data.goodsItemList) || data.goodsItemList.length == 0) { console.log("奖品数据"); if (this.data.page == 1) { this.setData({ mobileTop:getMobileCache(), noResult: true }) } else { this.setData({ mobileTop:getMobileCache(), noMore: true }) } return } data.goodsItemList.forEach(v => { let beginTime = v.couponBeginTimestamp let endTime = v.couponEndTimestamp v.couponBeginTimestamp = parseTime(beginTime, "{y}.{m}.{d}") v.couponEndTimestamp = parseTime(endTime, "{y}.{m}.{d}") }) this.data.goodsItemList = this.data.goodsItemList.concat(...data.goodsItemList) this.setData({ mobileTop:getMobileCache(), couponNum: data.couponNum, productNum: data.productNum, goodsItemList: this.data.goodsItemList }) }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { if (this.data.lock || this.data.noResult) { return } this.data.lock = true this.data.page++ this.getUserPrizeList() }, toProfile(e) { const url = "profile?id=" + e.currentTarget.dataset.id wx.redirectTo({ url }) }, turnPrize: function() { console.log("开始查看") if (this.islock || !this.data.isLogin) { return } }, // 授权手机号 getPhoneNumber(e) { getPhoneNumberSync(e, _ => { this.setData({ isLogin: true, mobileTop:getMobileCache(), }) this.getUserPrizeList() }) }, toRecordPrize(e) { const url = "recordPrize?id=" + e.currentTarget.dataset.id wx.redirectTo({ url }) }, })