import moment from "moment" export function rangeShortcuts(format = "YYYY-MM-DD HH:mm:ss") { return [ { text: "今天", value: () => [moment().startOf("day").format(format), moment().format(format)] }, { text: "本月", value: () => [moment().startOf("month").format(format), moment().format(format)] }, { text: "本季度", value: () => [moment().startOf("quarter").format(format), moment().format(format)] }, { text: "今年", value: () => [moment().startOf("year").format(format), moment().format(format)] }, ] // { text: "近7天", value: () => [moment().subtract(1, "week").format(format), moment().format(format)] }, // { text: "近1月", value: () => [moment().subtract(1, "month").format(format), moment().format(format)] }, // { text: "近1年", value: () => [moment().subtract(1, "year").format(format), moment().format(format)] }, }