123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import wxh from '../../../utils/wxh.js';
- import { getSeckillIndexTime, getSeckillList } from '../../../api/activity.js';
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- topImage:'',
- parameter: {
- 'navbar': '1',
- 'return': '1',
- 'title': '限时秒杀',
- 'color': true,
- 'class': '0'
- },
- seckillList:[],
- timeList:[],
- active:5,
- scrollLeft:0,
- interval:0,
- status:1,
- countDownHour: "00",
- countDownMinute: "00",
- countDownSecond: "00",
- page : 1,
- limit : 4,
- loading:false,
- loadend:false,
- pageloading:false,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (e) {
- this.getSeckillConfig();
- },
- goDetails:function(e){
- wx.navigateTo({
- url: '/pages/activity/goods_seckill_details/index?id=' + e.currentTarget.dataset.id + '&time=' + this.data.timeList[this.data.active].stop + '&status=' + this.data.status
- })
- },
- settimeList:function(e){
- var that = this;
- that.setData({ active: e.currentTarget.dataset.index });
- if (that.data.interval) {
- clearInterval(that.data.interval);
- that.setData({ interval: null });
- }
- that.setData({
- interval: 0,
- countDownHour: "00",
- countDownMinute: "00",
- countDownSecond: "00",
- status: that.data.timeList[that.data.active].status,
- loadend:false,
- page:1,
- seckillList:[],
- });
- // wxh.time(e.currentTarget.dataset.stop, that);
- that.getSeckillList();
- },
- getSeckillConfig: function () {
- let that = this;
- getSeckillIndexTime().then(res=>{
- that.setData({ topImage: res.data.lovely, timeList: res.data.seckillTime, active: res.data.seckillTimeIndex });
- if (that.data.timeList.length) {
- // wxh.time(that.data.timeList[that.data.active].stop, that);
- that.setData({ scrollLeft: (that.data.active - 1.37) * 100 });
- setTimeout(function () { that.setData({ loading: true }) }, 2000);
- that.setData({ seckillList: [], page: 1 });
- that.setData({ status: that.data.timeList[that.data.active].status });
- that.getSeckillList();
- }
- });
- },
- getSeckillList: function () {
- var that = this;
- var data = { page: that.data.page, limit: that.data.limit};
- if (that.data.loadend) return ;
- if (that.data.pageloading) return ;
- that.setData({ pageloading:true});
- getSeckillList(that.data.timeList[that.data.active].id, data).then(res=>{
- var seckillList = res.data;
- var loadend = seckillList.length < that.data.limit;
- that.data.page++;
- that.setData({
- seckillList: that.data.seckillList.concat(seckillList),
- page: that.data.page,
- pageloading: false,
- loadend: loadend
- });
- }).catch(err=>{
- that.setData({ pageloading:false});
- });
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- if(this.data.interval){
- clearInterval(this.data.interval);
- this.setData({ interval: null });
- }
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- this.getSeckillList();
- }
- })
|