data.ts 472 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { C1eTableDataKeyType } from '@/types'
  2. export const C1eTableData: {
  3. title: string
  4. key: C1eTableDataKeyType
  5. }[] = [
  6. {
  7. title: '周一',
  8. key: 'monday'
  9. },
  10. {
  11. title: '周二',
  12. key: 'tuesday'
  13. },
  14. {
  15. title: '周三',
  16. key: 'wednesday'
  17. },
  18. {
  19. title: '周四',
  20. key: 'thursday'
  21. },
  22. {
  23. title: '周五',
  24. key: 'friday'
  25. },
  26. {
  27. title: '周六',
  28. key: 'saturday'
  29. },
  30. {
  31. title: '周日',
  32. key: 'sunday'
  33. }
  34. ]