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 @@
-
+
{okVisible=true;cur_inruiry_id=modalForm.order_inquiry_id;}">取消问诊
@@ -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;
+}