index.js 477 B

1234567891011121314151617181920212223242526
  1. import reachBottom from '~/mixins/reachBottom';
  2. Page({
  3. behaviors: [reachBottom],
  4. data: {
  5. currentIndex: 1,
  6. categoryList: [{
  7. id: 1,
  8. title: '全部'
  9. }, {
  10. id: 2,
  11. title: '已付款'
  12. }, {
  13. id: 3,
  14. title: '退单'
  15. }, ]
  16. },
  17. onLoad(options) {
  18. },
  19. loadMore() {
  20. /* this.getData(getCategoryWorks, {
  21. columnId
  22. }); */
  23. },
  24. })