diff --git a/src/views/workorderMenu/abnormalWorkOrder/components/viewDialog.vue b/src/views/workorderMenu/abnormalWorkOrder/components/viewDialog.vue index e517ad0..dba575e 100644 --- a/src/views/workorderMenu/abnormalWorkOrder/components/viewDialog.vue +++ b/src/views/workorderMenu/abnormalWorkOrder/components/viewDialog.vue @@ -7,6 +7,27 @@ @cancel="handleCancel" wrapClassName="order-detail-modal" > + + + + + + {{ detail.workOrderNo || '-' }} + {{ detail.status || '-' }} + {{ detail.type || '-' }} + {{ detail.userName || '-' }} + {{ detail.gender || '-' }} + {{ detail.age ? detail.age + ' 岁' : '-' }} + {{ detail.phone || '-' }} + {{ detail.idCard || '-' }} + + {{ detail.assessmentLevel || '未填写' }} + + + + - {{ detail.checkInTime }} + {{ detail.checkInTime || '-' }} - {{ detail.checkInDistance }} + {{ detail.checkInDistance || '-' }} - {{ detail.checkInAddress }} + {{ detail.checkInAddress || '-' }} @@ -43,14 +64,14 @@ - {{ detail.checkOutTime }} + {{ detail.checkOutTime || '-' }} - {{ detail.checkOutDistance }} + {{ detail.checkOutDistance || '-' }} - {{ detail.checkOutAddress }} + {{ detail.checkOutAddress || '-' }} @@ -76,36 +97,33 @@ - {{ detail.serviceDuration }} + {{ detail.serviceDuration || '-' }} - - - - {{ detail.orderNo }} - {{ detail.userName }} - {{ detail.gender }} - {{ detail.age }} 岁 - {{ detail.phone }} - {{ detail.idCard }} - - {{ detail.assessmentLevel || '未填写' }} - - - {{ detail.caregiver }} - {{ detail.careLevel || '未填写' }} - {{ detail.plannedTime }} + {{ detail.nurseName || '-' }} + {{ detail.nurseLevel || '未填写' }} + + {{ detail.planStartDate ? dayjs(detail.planStartDate).format('YYYY-MM-DD') : '-' }} + + + {{ detail.planEndDate ? dayjs(detail.planEndDate).format('YYYY-MM-DD') : '-' }} + + + {{ detail.planStartTime ? dayjs(detail.planStartTime).format('HH:mm') : '-' }} + + {{ detail.orderer || '-' }} + + {{ detail.orderTime ? dayjs(detail.orderTime).format('YYYY-MM-DD HH:mm:ss') : '-' }} + - {{ detail.serviceAddress }} + {{ detail.serviceAddress || '-' }} @@ -122,62 +140,161 @@ /> + + + + + {{ detail.serviceContent || '无' }} + + + + + + + + {{ detail.summary || '无' }} + + + {{ detail.feedback || '无' }} + + + + + + + + {{ detail.serviceSatisfaction || '-' }} + + + {{ detail.evaluationChannel || '-' }} + + + {{ detail.evaluationContent || '无' }} + + + {{ detail.evaluator || '-' }} + + + {{ detail.evaluationTime ? dayjs(detail.evaluationTime).format('YYYY-MM-DD HH:mm:ss') : '-' }} + + + + + + + + {{ detail.visitSatisfaction || '-' }} + + + {{ detail.staffSatisfaction || '-' }} + + + {{ detail.visitFeedback || '无' }} + + + {{ detail.visitor || '-' }} + + + {{ detail.visitTime ? dayjs(detail.visitTime).format('YYYY-MM-DD HH:mm:ss') : '-' }} + + + - {{ detail.exceptionStatus }} + {{ detail.exceptionStatus || '无' }} {{ detail.exceptionReason || '无' }} {{ detail.exceptionHandler || '无' }} - {{ detail.exceptionTime || '无' }} + + {{ detail.exceptionTime ? dayjs(detail.exceptionTime).format('YYYY-MM-DD HH:mm:ss') : '无' }} + - + \ No newline at end of file