| 12345678910111213141516171819202122232425 |
- import { DICT_TYPE } from '@/utils/dict'
- // =================健康档案=====================
- export const RoutingLogColumns = reactive([
- {
- label: '长者姓名',
- field: 'elderName'
- },
- {
- label: '巡检日期',
- field: 'inspectionTime',
- format: true
- },
- // {
- // label: '班次',
- // field: 'elderName'
- // },
- {
- label: '巡检人员',
- field: 'inspectionName'
- },
- {
- label: '巡检记录',
- field: 'content'
- },
- ])
|