123456789101112131415161718192021222324252627282930313233 |
- Page({
- data: {
- currentIndex: 1,
- categoryList: [{
- id: 1,
- title: '全部'
- }, {
- id: 2,
- title: '7日'
- }, {
- id: 3,
- title: '月'
- }, {
- id: 4,
- title: '季'
- }, {
- id: 5,
- title: '半年'
- }]
- },
- onLoad(options) {
- },
- setClass({
- currentTarget
- }) {
- this.setData({
- currentIndex: currentTarget.dataset.index,
- });
- // this.resetData();
- },
- })
|