From 6972bc535e1837e8098df0d1c11801997da29421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Tue, 16 Apr 2024 14:15:18 +0800 Subject: [PATCH] xg --- .../RehabilitationPlanandRecords.vue | 92 +++++++++---------- 1 file changed, 42 insertions(+), 50 deletions(-) diff --git a/src/views/manage/components/RehabilitationPlanandRecords.vue b/src/views/manage/components/RehabilitationPlanandRecords.vue index f4b31d0..c43e3ba 100644 --- a/src/views/manage/components/RehabilitationPlanandRecords.vue +++ b/src/views/manage/components/RehabilitationPlanandRecords.vue @@ -76,7 +76,7 @@ -
+
专病管理路径:
@@ -92,55 +92,32 @@
路径详情: 预览
-
-
-
-
- 任务内容:{{ uitem.taskType == 'PHONE_OUTBOUND' ? "电话外呼" : "" }} - {{ uitem.taskType == 'QUESTIONNAIRE_SCALE' ? "问卷量表" : "" }} - {{ uitem.taskType == 'PROPAGANDA_ARTICLE' ? "宣教文案" : "" }} - {{ uitem.taskType == 'TEXT_REMIND' ? "文字提醒" : "" }} - {{ uitem.taskType == 'ARTIFICIAL_FOLLOW_UP' ? "人工随访" : "" }} -
-
- 话术模板:{{ uitem.phoneTemplateName }} -
-
- 问卷模板:{{ uitem.questionnaireName }} -
-
- 问卷有效期:{{ uitem.questionExpirationDate }}天 -
-
- 宣教模板:{{ uitem.propagandaTitle }} -
-
- 提醒内容:{{ uitem.textRemindContent }} -
-
- 人工随访模板:{{ uitem.questionnaireName }} -
-
- 人工随访详情:预览 -
-
- 问卷模板详情:预览 -
-
- 宣教模板详情:预览 -
-
- 话术模板详情:预览 +
+
+
+ 触发条件: +
+
+
+
+
+ + {{ uitem.triggerConditionName == 'DIAGNOSIS' ? '诊断' : '' }} + {{ uitem.triggerConditionName == 'DRESSING_CHANGE_DATE' ? '换药日期' : '' }} + {{ uitem.triggerConditionName == 'TREATMENT_METHOD' ? '治疗方式' : '' }} + {{ uitem.triggerConditionName == 'SURGICAL_NAME' ? '手术名称' : '' }} + {{ uitem.triggerConditionName == 'DRUG_NAME' ? '药品名称' : '' }} + + + {{ uitem.triggerConditionOperator == 'CONTAIN' ? '包含' : '' }} + {{ uitem.triggerConditionOperator == 'NOT_CONTAIN' ? '不包含' : '' }} + {{ uitem.triggerConditionOperator == 'EQUAL_TO' ? '等于' : '' }} + {{ uitem.triggerConditionOperator == 'NOT_EQUAL_TO' ? '不等于' : '' }} + + + {{ uitem.triggerConditionValue }} +
@@ -280,6 +257,19 @@ export default { width: 75%; padding-top: 20px; + .tagtitle { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + width: 100%; + margin: 0px; + color: black; + + span { + padding-left: 10px; + } + } + .titletop { font-size: 16px; font-weight: 700; @@ -346,6 +336,8 @@ export default { .text { font-size: 16px; font-weight: bold; + height: 30px; + line-height: 30px; } } }