From ff6beb41a1b84b38a4a72422351d0139bc588e21 Mon Sep 17 00:00:00 2001 From: zoujiandong <10130823232@qq.com> Date: Fri, 15 Sep 2023 15:02:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/doctor/doctor-list/index.vue | 1 + src/views/order/medince-list/index.vue | 3 + src/views/order/order-list/index.vue | 94 ++++++++++++++++++-------- 3 files changed, 68 insertions(+), 30 deletions(-) diff --git a/src/views/doctor/doctor-list/index.vue b/src/views/doctor/doctor-list/index.vue index b0a8ec2..748a0f3 100644 --- a/src/views/doctor/doctor-list/index.vue +++ b/src/views/doctor/doctor-list/index.vue @@ -32,6 +32,7 @@ 快速问诊 公益问诊 问诊购药 + 糖组检测 diff --git a/src/views/order/medince-list/index.vue b/src/views/order/medince-list/index.vue index 134e779..60da9f6 100644 --- a/src/views/order/medince-list/index.vue +++ b/src/views/order/medince-list/index.vue @@ -1052,4 +1052,7 @@ onMounted(() => { .expand { margin-top: 15px; } +.arco-form-item-content{ + word-break: break-all; +} diff --git a/src/views/order/order-list/index.vue b/src/views/order/order-list/index.vue index 7c8d979..a9cb861 100644 --- a/src/views/order/order-list/index.vue +++ b/src/views/order/order-list/index.vue @@ -34,6 +34,16 @@ 已取消 + + + + 专家问诊 + 快速问诊 + 公益问诊 + 问诊购药 + 糖组检测 + + @@ -287,7 +297,7 @@ {{modalForm.order_inquiry_case.disease_class_name}}  {{modalForm.user_doctor.department_custom_name}} - + @@ -296,35 +306,43 @@ - - - +
评价信息
- + + + + {{ comment.reply_quality }} + + + + + + + + + + + + + + + + + + + + + + + {{ comment.content }} + + + + + + +
操作
@@ -356,9 +376,9 @@ - + 取消问诊 @@ -397,6 +417,9 @@ const doctor_id=ref(''); const patientVisible=ref(false); const patientData=reactive({ }); +const comment=reactive({ + +}) // Akiraka 20230210 监听删除事件 watch(() => deleteVisible.value ,(value) => { @@ -599,6 +622,15 @@ const handleQuery = async () => { const { code, data, message } = await getOrderDetail(record.order_inquiry_id); if (code == 200) { Object.assign(modalForm, data); + let result=data.order_evaluation; + if(result){ + Object.assign(comment,{ + reply_progress:result.reply_progress/20, + reply_quality:result.reply_quality/20, + service_attitude:result.service_attitude/20, + content:result.content + }) + } } }; const formatInquiryStatus=(val)=>{ @@ -706,5 +738,7 @@ onMounted(() => { width: 80px; height: 80px; } - + .arco-form-item-content{ + word-break: break-all; +}