UNPKG

hk-core-antdv

Version:

Based on Antd Vue3 custom components

63 lines (62 loc) 856 B
/** * 日期范围查询枚举 */ declare enum DateRange { /** * 所有 */ ALL = "ALL", /** * 今天, Today */ TD = "TD", /** * 昨天,Yesterday */ YD = "YD", /** * 近7天 */ N7 = "N7", /** * 近30天 */ N30 = "N30", /** * 本周, this week */ TW = "TW", /** * 上周, last week */ LW = "LW", /** * 本月, this month */ TM = "TM", /** * 上月, last month */ LM = "LM", /** * 本季度, this quarter */ TQ = "TQ", /** * 上季度, last quarter */ LQ = "LQ", /** * 今年, this year */ TY = "TY", /** * 去年, last year */ LY = "LY", /** * 自定义 */ CUSTOM = "CUSTOM" } export default DateRange;