| 1234567891011121314151617181920212223242526272829303132333435 |
- import { C1eTableDataKeyType } from '@/types'
- export const C1eTableData: {
- title: string
- key: C1eTableDataKeyType
- }[] = [
- {
- title: '周一',
- key: 'monday'
- },
- {
- title: '周二',
- key: 'tuesday'
- },
- {
- title: '周三',
- key: 'wednesday'
- },
- {
- title: '周四',
- key: 'thursday'
- },
- {
- title: '周五',
- key: 'friday'
- },
- {
- title: '周六',
- key: 'saturday'
- },
- {
- title: '周日',
- key: 'sunday'
- }
- ]
|