From 729403c39177d1dac40da261823396835dcd1fe5 Mon Sep 17 00:00:00 2001 From: qiuyuan Date: Mon, 10 Nov 2025 14:00:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=82=E5=B8=B8=E5=B7=A5=E5=8D=95=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/viewDialog.vue | 369 ++++++++++++++---- .../workorderMenu/abnormalWorkOrder/index.vue | 229 +++++------ 2 files changed, 403 insertions(+), 195 deletions(-) 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