wujingjing
2024-07-25 295a801e0fb81f0da81611052ebc8a14bd0c9021
1
2
3
4
5
6
7
8
9
10
11
12
13
export const enum DateFilter {
    All,
    AWeek,
    AMonth,
    ThreeMonth
}
 
export const dateFilterMap = {
    [DateFilter.All]:'全部',
    [DateFilter.AWeek]:'一周内',
    [DateFilter.AMonth]:'一月内',
    [DateFilter.ThreeMonth]:'三月内'
}