| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- export const cyclicalOp = [
- {
- label: '今天',
- value: 'today',
- title: '较昨天'
- },
- {
- label: '昨天',
- value: 'yesterday',
- title: '较前天'
- },
- {
- label: '本周',
- value: 'week',
- title: '较上周'
- },
- {
- label: '上周',
- value: 'lastWeek',
- title: '较前周'
- },
- {
- label: '本月',
- value: 'month',
- title: '较上月'
- },
- {
- label: '上月',
- value: 'lastMonth',
- title: '较上上月'
- },
- {
- label: '本季度',
- value: 'quarter',
- title: '较上季度'
- },
- {
- label: '上季度',
- value: 'lastQuarter',
- title: '教上上季度'
- },
- {
- label: '本年',
- value: 'year',
- title: '较去年'
- },
- {
- label: '去年',
- value: 'lastYear',
- title: '较前年'
- }
- ]
|