123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- // pages/goods/orderList/orderList.js
- import { get, post } from '../../../utils/http'
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- current: 4,
- list: [],
- total: 0,
- page: 1,
- statusTexts: {
- // 状态-1已取消,0待支付,1已支付待取货,2.已完成
- s_0: '待支付',
- s_1: '待取货',
- s_3: '已取消',
- s_2: '已取货'
- },
- time:900 * 1000,//秒杀剩余支付倒计时
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- if (options.current) {
- this.setData({ current: options.current })
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {},
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.getOrder(1)
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {},
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- if (this.data.page * 10 < this.data.total) {
- this.getOrder(++this.data.page)
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {},
- /**
- * 切换tabs
- */
- onTabsChange(e) {
- let current = e.currentTarget.dataset.id
- if (current == this.data.current) {
- return
- }
- this.setData(
- {
- current,
- page: 1
- },
- () => {
- this.getOrder()
- }
- )
- },
- /**
- * 取消订单
- */
- onCancelOrder(e) {
- let that = this
- wx.showModal({
- title: '提示',
- content: '是否取消当前订单',
- success(res) {
- if (res.confirm) {
- console.log('用户点击确定')
- get(
- 'v2/api/goods_order/cancel',
- {
- order_id: e.currentTarget.dataset.id
- },
- (res) => {
- wx.showToast({
- title: res.msg,
- icon: 'success',
- duration: 2000
- })
- that.getOrder(1)
- }
- )
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- },
- onPay: function (e) {
- this.setData({
- order_id: e.currentTarget.dataset.id,
- payMoney: e.currentTarget.dataset.money,
- })
- wx.navigateTo({
- url: `/pages/goods/orderDetail/orderDetail?id=${ e.currentTarget.dataset.id}`,
- })
- },
- /**
- * 获取订单列表
- * api/order
- */
- getOrder(_page) {
- let { list, current, page, statusTexts } = this.data
- get(
- '/v2/api/goods_order/list',
- {
- type: Number(current),
- page: _page || page,
- limit: 10
- },
- (res) => {
- console.log(res);
- if (_page == 1 || page == 1) {
- list = []
- this.data.page = 1
- }
- res.data.list.map((item) => {
- // 状态,-3已退款,-2退款中,-1已取消,0待支付,1已支付,待取货,2已取货
- if(item.status==-1){
- item.status=3
- }
- item['status_text'] = statusTexts['s_' + item.status]
- let sum = 0
- item.good.map(item1=>{
- sum += item1.num
- })
- // 加上加购产品数量
- sum = item.plus.length+sum
- item.sum = sum
- item.seconds = Number(item.seconds)
- })
- list.push(...res.data.list)
- this.setData({ list, total: res.data.total })
- }
- )
- },
- /**
- * 用户允许消息通知
- * /api/message/agree
- */
- messageAgree(ids, order_id) {
- post(
- 'api/message/agree',
- {
- order_id,
- ids
- },
- () => {}
- )
- },
- // 计算倒计时结束
- finishTime(){
- // 时间结束重新刷新页面订单
- this.getOrder()
- }
- })
|