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 || '未填写' }}
+
+
+
+
@@ -14,14 +35,14 @@
- {{ 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