column.ts 468 B

12345678910111213141516171819202122232425
  1. import { DICT_TYPE } from '@/utils/dict'
  2. // =================健康档案=====================
  3. export const RoutingLogColumns = reactive([
  4. {
  5. label: '长者姓名',
  6. field: 'elderName'
  7. },
  8. {
  9. label: '巡检日期',
  10. field: 'inspectionTime',
  11. format: true
  12. },
  13. // {
  14. // label: '班次',
  15. // field: 'elderName'
  16. // },
  17. {
  18. label: '巡检人员',
  19. field: 'inspectionName'
  20. },
  21. {
  22. label: '巡检记录',
  23. field: 'content'
  24. },
  25. ])