You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
816 B
17 lines
816 B
export default {
|
|
timeUnits: [
|
|
// 时间颗粒度
|
|
{ id: 0, value: '毫秒', format: 'x', cycle: 'YY-M-D HH:mm:ss' },
|
|
{ id: 1, value: '秒', format: 'x', cycle: 'YY-M-D HH:mm:ss' },
|
|
{ id: 2, value: '分', format: 'ss', cycle: 'YY-M-D HH:mm' },
|
|
{ id: 3, value: '时', format: 'mm', cycle: 'YY-M-D HH时' },
|
|
{ id: 4, value: '天', format: 'D日 HH:mm', cycle: 'YY-M-D' },
|
|
{ id: 5, value: '周', format: 'D日 HH:mm', cycle: '' },
|
|
{ id: 6, value: '月', format: 'D日 H:m', cycle: 'YYYY年' },
|
|
{ id: 7, value: '季度', format: '', cycle: 'YYYY年' },
|
|
{ id: 8, value: '年', format: 'YYYY', cycle: '' },
|
|
{ id: 9, value: '年代', format: '', cycle: '' },
|
|
{ id: 10, value: '世纪', format: '', cycle: '' },
|
|
{ id: 11, value: '千年', format: '', cycle: '' },
|
|
],
|
|
};
|
|
|