| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- import { OrderStatus } from '../config';
- import { fetchOrders, fetchOrdersCount } from '../../../services/order/orderList';
- import { cosThumb } from '../../../utils/util';
- Page({
- page: {
- size: 5,
- num: 1,
- },
- data: {
- tabs: [
- { key: -1, text: '全部' },
- { key: OrderStatus.PENDING_PAYMENT, text: '待付款', info: '' },
- { key: OrderStatus.PENDING_DELIVERY, text: '待发货', info: '' },
- { key: OrderStatus.PENDING_RECEIPT, text: '待收货', info: '' },
- { key: OrderStatus.COMPLETE, text: '已完成', info: '' },
- ],
- curTab: -1,
- orderList: [],
- listLoading: 0,
- pullDownRefreshing: false,
- emptyImg: 'https://tdesign.gtimg.com/miniprogram/template/retail/order/empty-order-list.png',
- backRefresh: false,
- status: -1,
- },
- onLoad(query) {
- let status = parseInt(query.status);
- status = this.data.tabs.map((t) => t.key).includes(status) ? status : -1;
- this.init(status);
- this.pullDownRefresh = this.selectComponent('#wr-pull-down-refresh');
- },
- onShow() {
- if (!this.data.backRefresh) return;
- this.onRefresh();
- this.setData({ backRefresh: false });
- },
- onReachBottom() {
- if (this.data.listLoading === 0) {
- this.getOrderList(this.data.curTab);
- }
- },
- onPageScroll(e) {
- this.pullDownRefresh && this.pullDownRefresh.onPageScroll(e);
- },
- onPullDownRefresh_(e) {
- const { callback } = e.detail;
- this.setData({ pullDownRefreshing: true });
- this.refreshList(this.data.curTab)
- .then(() => {
- this.setData({ pullDownRefreshing: false });
- callback && callback();
- })
- .catch((err) => {
- this.setData({ pullDownRefreshing: false });
- Promise.reject(err);
- });
- },
- init(status) {
- status = status !== undefined ? status : this.data.curTab;
- this.setData({
- status,
- });
- this.refreshList(status);
- },
- getOrderList(statusCode = -1, reset = false) {
- const params = {
- parameter: {
- pageSize: this.page.size,
- pageNum: this.page.num,
- },
- };
- if (statusCode !== -1) params.parameter.orderStatus = statusCode;
- this.setData({ listLoading: 1 });
- return fetchOrders(params)
- .then((res) => {
- this.page.num++;
- let orderList = [];
- if (res && res.data && res.data.orders) {
- orderList = (res.data.orders || []).map((order) => {
- return {
- id: order.orderId,
- orderNo: order.orderNo,
- parentOrderNo: order.parentOrderNo,
- storeId: order.storeId,
- storeName: order.storeName,
- status: order.orderStatus,
- statusDesc: order.orderStatusName,
- amount: order.paymentAmount,
- totalAmount: order.totalAmount,
- logisticsNo: order.logisticsVO.logisticsNo,
- createTime: order.createTime,
- goodsList: (order.orderItemVOs || []).map((goods) => ({
- id: goods.id,
- thumb: cosThumb(goods.goodsPictureUrl, 70),
- title: goods.goodsName,
- skuId: goods.skuId,
- spuId: goods.spuId,
- specs: (goods.specifications || []).map((spec) => spec.specValue),
- price: goods.tagPrice ? goods.tagPrice : goods.actualPrice,
- num: goods.buyQuantity,
- titlePrefixTags: goods.tagText ? [{ text: goods.tagText }] : [],
- })),
- buttons: order.buttonVOs || [],
- groupInfoVo: order.groupInfoVo,
- freightFee: order.freightFee,
- };
- });
- }
- return new Promise((resolve) => {
- if (reset) {
- this.setData({ orderList: [] }, () => resolve());
- } else resolve();
- }).then(() => {
- this.setData({
- orderList: this.data.orderList.concat(orderList),
- listLoading: orderList.length > 0 ? 0 : 2,
- });
- });
- })
- .catch((err) => {
- this.setData({ listLoading: 3 });
- return Promise.reject(err);
- });
- },
- onReTryLoad() {
- this.getOrderList(this.data.curTab);
- },
- onTabChange(e) {
- const { value } = e.detail;
- this.setData({
- status: value,
- });
- this.refreshList(value);
- },
- getOrdersCount() {
- return fetchOrdersCount().then((res) => {
- const tabsCount = res.data || [];
- const { tabs } = this.data;
- tabs.forEach((tab) => {
- const tabCount = tabsCount.find((c) => c.tabType === tab.key);
- if (tabCount) {
- tab.info = tabCount.orderNum;
- }
- });
- this.setData({ tabs });
- });
- },
- refreshList(status = -1) {
- this.page = {
- size: this.page.size,
- num: 1,
- };
- this.setData({ curTab: status, orderList: [] });
- return Promise.all([this.getOrderList(status, true), this.getOrdersCount()]);
- },
- onRefresh() {
- this.refreshList(this.data.curTab);
- },
- onOrderCardTap(e) {
- const { order } = e.currentTarget.dataset;
- wx.navigateTo({
- url: `/pages/order/order-detail/index?orderNo=${order.orderNo}`,
- });
- },
- });
|