From 31700fcfaacc497cf9bf714973c8694c2d5693e9 Mon Sep 17 00:00:00 2001 From: ChenQiuYu Date: Fri, 9 May 2025 16:50:36 +0800 Subject: [PATCH] dev --- src/assets/scss/main.scss | 2 +- src/components/SearchInput.vue | 2 +- src/components/common/goods/GoodsDetail.vue | 9 +- .../common/service/ServiceDetail.vue | 8 +- src/components/outpatient/Case.vue | 49 +++++--- .../outpatient/DiagnosisSearchInput.vue | 3 +- src/components/outpatient/MedicalQueue.vue | 117 +++++++----------- src/views/outpatient/index.vue | 70 ++++++----- 8 files changed, 131 insertions(+), 129 deletions(-) diff --git a/src/assets/scss/main.scss b/src/assets/scss/main.scss index 456d9e2..7614eaf 100644 --- a/src/assets/scss/main.scss +++ b/src/assets/scss/main.scss @@ -15,7 +15,7 @@ ul, li { html, body { height: 100%; - font-family: Source Han Sans,PingFangSC, PingFang SC, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; + font-family: PingFangSC, PingFang SC, sans-serif; font-size: 16px; color: base.$text-primary; background-color: base.$background-color-base; diff --git a/src/components/SearchInput.vue b/src/components/SearchInput.vue index 69ffdb4..945d331 100644 --- a/src/components/SearchInput.vue +++ b/src/components/SearchInput.vue @@ -8,7 +8,7 @@ v-model="keyword" :prefix-icon="Plus" :placeholder="props.placeholder" - style="width: 100%" + style="width: 100%;height: 100%" clearable @input="changeInput" class="no-border-input" diff --git a/src/components/common/goods/GoodsDetail.vue b/src/components/common/goods/GoodsDetail.vue index dbb6269..b42fc40 100644 --- a/src/components/common/goods/GoodsDetail.vue +++ b/src/components/common/goods/GoodsDetail.vue @@ -82,15 +82,16 @@
- 合计:¥{{ getTotalPrice() }} + 合计:¥{{ getTotalPrice() }}
@@ -210,9 +211,11 @@ const colosInfo = () => { text-align: right; border-top: 1px solid #EAEAEC; display: flex; - + height: 58px; + align-items: center; .search { flex: 1; + height: 100%; } } \ No newline at end of file diff --git a/src/components/common/service/ServiceDetail.vue b/src/components/common/service/ServiceDetail.vue index 75c6e13..634d997 100644 --- a/src/components/common/service/ServiceDetail.vue +++ b/src/components/common/service/ServiceDetail.vue @@ -54,13 +54,14 @@
- 合计:¥{{ getTotalPrice() || 0 }} + 合计:¥{{ getTotalPrice() || 0 }}
@@ -159,9 +160,12 @@ const hide = () => { text-align: right; border-top: 1px solid #EAEAEC; display: flex; + height: 58px; + align-items: center; .search { flex: 1; + height: 100%; } } \ No newline at end of file diff --git a/src/components/outpatient/Case.vue b/src/components/outpatient/Case.vue index eb5af25..f054be3 100644 --- a/src/components/outpatient/Case.vue +++ b/src/components/outpatient/Case.vue @@ -8,16 +8,15 @@ -
- + - + - + - + - + - + - + - + - + - - + + - - + +
@@ -127,17 +127,30 @@ defineExpose({initDiagnosisSearch,clearDiagnosis}) \ No newline at end of file diff --git a/src/components/outpatient/DiagnosisSearchInput.vue b/src/components/outpatient/DiagnosisSearchInput.vue index c6e6ecf..d6e2b23 100644 --- a/src/components/outpatient/DiagnosisSearchInput.vue +++ b/src/components/outpatient/DiagnosisSearchInput.vue @@ -1,9 +1,8 @@