wujingjing
2025-02-10 23a0802841eb14b2c007f6f4b495194d2d920750
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]:'三月内'
}