This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop-wechat/pages/sharp/index/index.js

221 lines
4.5 KiB
JavaScript
Raw Permalink Normal View History

2020-04-25 22:59:04 +08:00
import util from '../../../utils/util.js';
import StateEnum from '../../../utils/enum/sharp/ActiveStatus.js';
2021-07-16 16:37:55 +08:00
const App = getApp()
2020-04-25 22:59:04 +08:00
Page({
/**
* 页面的初始数据
*/
data: {
// 当前tab索引
curTabIndex: 0,
noMore: false, // 没有更多数据
isLoading: true, // 是否正在加载中
page: 1, // 当前页码
StateEnum, // 枚举类:秒杀会场活动状态
2021-07-16 16:37:55 +08:00
countDownTime: false, // 倒计时日期
2020-04-25 22:59:04 +08:00
// 秒杀活动场次
tabbar: [],
// 秒杀商品列表
goodsList: [],
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
2021-07-16 16:36:54 +08:00
const _this = this;
_this.onRefreshPage()
2020-04-25 22:59:04 +08:00
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
2021-07-16 16:36:54 +08:00
// const _this = this;
// if (_this.data.curTabIndex == 0) {
// // 刷新页面
// _this.onRefreshPage()
// }
},
/**
* 刷新页面数据
*/
onRefreshPage() {
const _this = this
return new Promise((resolve, reject) => {
2020-04-25 22:59:04 +08:00
// 获取列表数据
2021-07-16 16:36:54 +08:00
_this.getApiData().then(() => {
resolve()
})
})
2020-04-25 22:59:04 +08:00
},
/**
2021-07-16 16:36:54 +08:00
* 下拉刷新
*/
onPullDownRefresh() {
// 获取首页数据
this.onRefreshPage().then(() => {
wx.stopPullDownRefresh()
})
},
/**
* 获取页面数据
2020-04-25 22:59:04 +08:00
*/
getApiData() {
2021-07-16 16:36:54 +08:00
const app = this;
return new Promise((resolve, reject) => {
App._get('sharp.index/index', {}, (result) => {
const data = result.data
app.setData(data);
// 初始化倒计时组件
app._initCountDownData();
resolve(data)
});
})
2020-04-25 22:59:04 +08:00
},
/**
* 初始化倒计时组件
*/
2021-07-16 16:37:55 +08:00
_initCountDownData() {
2021-07-16 16:36:54 +08:00
const app = this,
curTabbar = app.data.tabbar[app.data.curTabIndex];
2020-04-25 22:59:04 +08:00
// 记录倒计时的时间
2021-07-16 16:36:54 +08:00
app.setData({
2021-07-16 16:37:55 +08:00
countDownTime: curTabbar.count_down_time
2021-07-16 16:36:54 +08:00
})
2020-04-25 22:59:04 +08:00
},
2021-07-16 16:37:55 +08:00
// 倒计时结束刷新页面
onCountDownEnd() {
console.log('onCountDownEnd')
const app = this
setTimeout(() => {
app.onRefreshPage()
}, 200)
},
2020-04-25 22:59:04 +08:00
/**
* 切换tabbar
*/
onToggleTab(e) {
let _this = this;
// 设置当前tabbar索引并重置数据
2021-07-16 16:36:54 +08:00
const curTabIndex = e.currentTarget.dataset.index
2020-04-25 22:59:04 +08:00
_this.setData({
2021-07-16 16:36:54 +08:00
curTabIndex,
2020-04-25 22:59:04 +08:00
goodsList: [],
page: 1,
isLoading: true,
noMore: false,
});
// 获取列表数据
_this.getGoodsList();
// 初始化倒计时组件
2021-07-16 16:37:55 +08:00
_this._initCountDownData();
2020-04-25 22:59:04 +08:00
},
/**
2021-07-16 16:36:54 +08:00
* 跳转到秒杀商品详情
2020-04-25 22:59:04 +08:00
*/
onTargetActive(e) {
let _this = this,
curTabbar = _this.data.tabbar[_this.data.curTabIndex];
let query = util.urlEncode({
active_time_id: curTabbar.active_time_id,
sharp_goods_id: e.detail.target.dataset.id,
});
console.log(query);
wx.navigateTo({
url: `../goods/index?${query}`,
})
},
/**
* 下拉到底部加载下一页
*/
onReachBottom() {
let _this = this,
listData = _this.data.goodsList;
// 已经是最后一页
if (_this.data.page >= listData.last_page) {
_this.setData({
noMore: true
});
return false;
}
// 加载下一页列表
_this.setData({
page: ++_this.data.page
});
_this.getGoodsList(true);
},
/**
* 获取列表数据
*/
getGoodsList(isNextPage) {
let _this = this,
2021-07-16 16:36:54 +08:00
curTabbar = _this.data.tabbar[_this.data.curTabIndex];
2020-04-25 22:59:04 +08:00
App._get('sharp.goods/lists', {
page: _this.data.page || 1,
active_time_id: curTabbar.active_time_id
}, (result) => {
let resList = result.data.list,
dataList = _this.data.goodsList;
if (isNextPage == true) {
_this.setData({
'goodsList.data': dataList.data.concat(resList.data),
isLoading: false,
});
} else {
_this.setData({
goodsList: resList,
isLoading: false,
});
}
});
},
/**
2020-08-28 10:50:12 +08:00
* 分享当前页面
2020-04-25 22:59:04 +08:00
*/
onShareAppMessage() {
2020-08-28 10:50:12 +08:00
const _this = this;
// 构建页面参数
const params = App.getShareUrlParams();
return {
title: '整点秒杀',
path: `/pages/sharp/index/index?${params}`
};
},
/**
* 分享到朋友圈
* 本接口为 Beta 版本暂只在 Android 平台支持详见分享到朋友圈 (Beta)
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
*/
onShareTimeline() {
const _this = this;
2020-04-25 22:59:04 +08:00
// 构建页面参数
2020-08-28 10:50:12 +08:00
const params = App.getShareUrlParams();
2020-04-25 22:59:04 +08:00
return {
title: '整点秒杀',
path: `/pages/sharp/index/index?${params}`
};
},
})