diff --git a/pages/consult/select-drug/edit-popup.vue b/pages/consult/select-drug/edit-popup.vue
index 4c00322..5e223da 100644
--- a/pages/consult/select-drug/edit-popup.vue
+++ b/pages/consult/select-drug/edit-popup.vue
@@ -22,7 +22,6 @@
{{ current.unit }}
- 已超过建议开药数量
用药方式
@@ -53,10 +52,6 @@
-
-
- 已为您填入药品常规用量,请确认!
-
@@ -148,7 +143,12 @@ function confirm() {
}
// 延迟执行是因为 单次剂量以及数量 手动输入的时候 值改变有延时 手机端可以可以出现 开发工具不行
setTimeout(() => {
- const arr = [current.value.usageName, current.value.frequencyName, current.value.dosage ? `每次${current.value.dosage}${current.value.dosage_unit || ''}` : ''].filter(Boolean);
+ const arr = [
+ current.value.usageName,
+ current.value.frequencyName,
+ current.value.dosage ? `每次${current.value.dosage}${current.value.dosage_unit || ''}` : '',
+ current.value.dose_time_name ? `${current.value.dose_time_name}用药`:''
+ ].filter(Boolean);
emits('change', { ...current.value, memo: arr.join(',') })
}, 500)
}