| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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: '较前年'
- }
- ]
- export const cardTypeMap = {
- CLIENT: 0, // 客户
- COMPANY: 1, // 单位
- BUSINESS: 2, // 商机
- SERVICE: 3 // 服务记录
- }
|