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