123456789101112131415161718192021222324252627282930313233343536 |
- import reachBottom from '~/mixins/reachBottom';
- import {
- getSaleOrder
- } from '~/api/sale'
- Page({
- behaviors: [reachBottom],
- data: {
- currentIndex: 1,
- categoryList: [{
- id: 1,
- title: '全部'
- }, {
- id: 2,
- title: '已付款'
- }, {
- id: 3,
- title: '退单'
- }, ]
- },
- onLoad(options) {
- this.resetData();
- },
- loadMore() {
- this.getData(getSaleOrder, {
- });
- },
- setClass({
- currentTarget
- }) {
- this.setData({
- currentIndex: currentTarget.dataset.index,
- });
- this.resetData();
- },
- })
|