| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import { DICT_TYPE } from '@/utils/dict'
- // =================入住申请=====================
- export const CheckInRequestColumns = reactive([
- {
- label: '所属机构',
- field: 'tenantName',
- type: '99'
- },
- {
- label: '姓名',
- field: 'elderName'
- },
- {
- label: '性别',
- field: 'elderSex',
- dictArr: DICT_TYPE.SYSTEM_USER_SEX,
- type: '1'
- },
- {
- label: '信息完整度',
- field: 'infoPercentage',
- type: '4',
- componentName: 'el-progress'
- },
- {
- label: '入住类别',
- field: 'inStatusType',
- dictArr: DICT_TYPE.IN_STATUS_TYPE,
- type: '1'
- },
- {
- label: '状态',
- field: 'inStatus',
- dictArr: DICT_TYPE.IN_STATUS_ARR,
- type: '1'
- },
- {
- label: '申请日期',
- field: 'createTime',
- format: true
- },
- {
- label: '申请状态',
- field: 'bpmStatus',
- dictArr: DICT_TYPE.APPROVAL_STATUS,
- type: '11',
- content: '入住申请审批通过,方可办理入住'
- },
- ])
- // =================入住办理============================
- export const CheckInColumns = reactive([
- {
- label: '所属机构',
- field: 'tenantName',
- type: '99'
- },
- {
- label: '姓名',
- field: 'elderName'
- },
- {
- label: '性别',
- field: 'elderSex',
- dictArr: DICT_TYPE.SYSTEM_USER_SEX,
- type: '1'
- },
- {
- label: '入住类别',
- field: 'inStatusType',
- dictArr: DICT_TYPE.IN_STATUS_TYPE,
- type: '1'
- },
- {
- label: '实际入住日期',
- field: 'checkInTime',
- format: true
- },
- {
- label: '状态',
- field: 'status',
- dictArr: DICT_TYPE.HANDLE_STATUS,
- type: '1'
- },
- {
- label: '护理级别',
- field: 'nurseLevelName'
- },
- {
- label: '费用审批',
- field: 'bpmStatus',
- dictArr: DICT_TYPE.APPROVAL_STATUS,
- type: '2'
- }
- ])
|