You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
301 B
15 lines
301 B
3 years ago
|
Component({
|
||
|
data: {
|
||
|
active:0,
|
||
|
timelist: ['二十四小时', '最近七天', '最近三十天', '自定义'],
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
priceSel(e){
|
||
|
this.setData({
|
||
|
intervalSel: e.currentTarget.dataset.index
|
||
|
})
|
||
|
}
|
||
|
|
||
|
}
|
||
|
})
|