gerson
2025-02-09 a7ac2d87ee0f8ae2e7a507729660dedd01036402
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]:'三月内'
}