// pages/order/order.js
var util = require('../../utils/util.js');
var ports = require('../../utils/ports.js');
var polyfill = require('../../utils/polyfill.js');
var Countdown = require('../../utils/countDown.js');
// 引入promise
var Promise = require('../../lib/es6-promise.min.js');
//测试对象
var obj = {
"code": 0,
"msg": "门店订单列表接口",
"cmd": "",
"uid": 37485,
"time": 1487142408,
"data": {
"pagination": {
"totalCount": 1,
"totalPage": 1,
"curPageNo": 1,
"pageSize": 10
},
"order_list": [
{
"order_id": 4084,
"order_sn": "CO161219183055814700",
"store_id": "20",
"store_name": "永新汇店",
"currency": "¥",
"order_amount": "12.23",
"add_time": "2017-02-15 15:06:48",
"order_status": "10",
"order_status_name": "",
"left_time": 3600,
"province_id": "0",
"province_name": "广东省",
"city_id": "0",
"city_name": "深圳市",
"district_id": "0",
"district_name": "南山区",
"addressline": "深圳出入境检测检疫局工业品检测技术中心",
"address_lng": "113.92456055",
"address_lat": "22.50715065",
"progress": {
"info": [
{
"icon": "create",
"text": "已提交"
},
{
"icon": "await_pay",
"text": "待支付"
}
// {
// "icon": "paid",
// "text": "已支付"
// },
// {
// "icon": "picking",
// "text": "待配送"
// },
// {
// "icon": "shipping",
// "text": "配送中"
// },
// {
// "icon": "confirm_goods",
// "text": "已送达"
// },
// {
// "icon": "refund",
// "text": "已取消"
// },
// {
// "icon": "complete",
// "text": "已完成"
// },
// {
// "icon": "cancel",
// "text": "已取消"
// }
],
"last_index": 2
},
"button_list": [
{
"text": "去支付",
"action": "to_pay",
"is_highlight": 1
},
{
"text": "再来一单",
"action": "buy_again",
"is_highlight": 1
},
{
"text": "确认收货",
"action": "confirm_goods",
"is_highlight": 1
},
{
"text": "取消订单",
"action": "cancel_order",
"is_highlight": 1
},
{
"text": "取消订单",
"action": "refund_order",
"is_highlight": 1
},
{
"text": "订单进度",
"action": "order_progress",
"is_highlight": 1
},
{
"text": "申请售后",
"action": "return_order",
"is_highlight": 1
}
],
"goods_list": [
{
"goods_id": "1029",
"goods_sn": "145254101",
"goods_name": "【保税】澳洲Rebecca碟型活性羊胎素霜 50ml",
"goods_price": "61.00",
"goods_number": "1",
"goods_img": "http://img01.wzhouhui.egocdn.com/goods/image_show/2016/11/25/300/35240bf972782b3221e782c35f87cd934844caab.jpg",
"tags": [],
"apply_status_name": "",
"apply_status": "3"
},
{
"goods_id": "1029",
"goods_sn": "145254101",
"goods_name": "【保税】澳洲Rebecca碟型活性羊胎素霜 50ml",
"goods_price": "61.00",
"goods_number": "1",
"goods_img": "http://img01.wzhouhui.egocdn.com/goods/image_show/2016/11/25/300/35240bf972782b3221e782c35f87cd934844caab.jpg",
"tags": [],
"apply_status_name": "",
"apply_status": "3"
}
]
}
]
},
"from_ip": "127.0.0.1"
};
Page({
data:{
orderList: [],
reasonData: [],
reasonDataIndex: 0,
reasonList: {},
showLoadingFlag: false,
showLoadedFlag: false,
hasOrder: true,
currPage: 0,
totalPage: 1,
pages: [],
clockFlags: []
},
getOrderList(index) {
if(!index) {
this.setData({
currPage: this.data.currPage++
});
}
if(this.data.currPage > this.data.totalPage) {
this.setData({
showLoadedFlag: true,
showLoadingFlag: false
});
return;
}
util.getToken().then(token => {
return util.wxRequest({
url: ports.orderList,
method: 'POST',
data: { page: index ? index: this.data.currPage },
header: { 'X-Auth-Token': token, 'content-type': 'application/x-www-form-urlencoded'}
})
}).then(res => {
// this.currPage = res.data.pagination.curPageNo
res = obj; //测试对象
this.setData({
totalPage: res.data.pagination.totalPage
});
if(this.data.totalPage === 0){
this.setData({
hasOrder: false
});
return;
}
var pages = this.data.pages;
if(index) {
pages.splice(index-1, 1, res.data.order_list);
}else {
pages.push(res.data.order_list);
this.setData({
showLoadingFlag: false
});
}
this.setData({
pages: pages
});
//清除计时器
this.clearTimer();
this.handleList();
}).catch(err => {
if(err.status === 4002) {
wx.navigateTo({
url: '../login/login'
});
}
})
},
//同个页面多个计时器,需要每次更换数据时,清掉上一个计时器标志数组
clearTimer: function(){
var clockflags = this.data.clockFlags;
for(let i = 0; i < clockflags.length; i++){
clearInterval(clockflags[i]);
}
},
onReachBottom: function(){
if(this.data.showLoadedFlag){
return;
}
this.setData({
showLoadingFlag: true
});
this.getOrderList();
},
handleList: function(){
var list = [], val = this.data.pages;
for(let i = 0; i< val.length; i++) {
for(let j = 0; j < val[i].length; j++) {
val[i][j].page = i + 1;
val[i][j].clock = '';
var len = list.push(val[i][j]);
}
}
this.setData({
orderList: list
});
this.doCountDwon();
},
doCountDwon: function(){
var list = this.data.orderList, _self = this;
for(let i = 0; i < list.length; i++){
if(list[i].left_time !== 0){
var timer = new Countdown({
context: this,
second: list[i].left_time*1000,
endText: '',
isCustom: true,
customDataName: 'orderList[' + i + '].' + 'clock',
index: i,
start: function(flag){
//保存计时器标志
var clockflags = _self.data.clockFlags;
clockflags.push(flag);
_self.setData({
clockFlags: clockflags
});
},
done: function(options){
//处理后倒计时后,是否需要改变icon
console.log(options.index);
}
})
timer.ru
没有合适的资源?快使用搜索试试~ 我知道了~
五洲到家微信小程序源码.zip

共114个文件
js:33个
wxml:21个
wxss:21个

1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
19 浏览量
2022-07-13
21:51:35
上传
评论
收藏 229KB ZIP 举报
五洲到家微信小程序源码
资源推荐
资源详情
资源评论















收起资源包目录





































































































共 114 条
- 1
- 2
资源评论

HappyGirl快乐女孩
- 粉丝: 1w+
- 资源: 613

上传资源 快速赚钱
我的内容管理 收起
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助

会员权益专享
安全验证
文档复制为VIP权益,开通VIP直接复制
