From fdf2ca6136dc257b4b4c7c42268f9068b2ab4346 Mon Sep 17 00:00:00 2001 From: Jafeng <2998840497@qq.com> Date: Wed, 11 Feb 2026 17:45:09 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E6=BB=91=E5=8A=A8?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/case/archive-edit.vue | 25 +++-- pages/case/new-followup-record.vue | 105 ++++++++++-------- pages/case/new-followup.vue | 155 ++++++++++++++++----------- pages/case/service-record-detail.vue | 18 +++- pages/case/visit-record-view.vue | 91 +++++++++------- 5 files changed, 238 insertions(+), 156 deletions(-) diff --git a/pages/case/archive-edit.vue b/pages/case/archive-edit.vue index 04e522e..2236281 100644 --- a/pages/case/archive-edit.vue +++ b/pages/case/archive-edit.vue @@ -1,12 +1,14 @@  @@ -44,6 +46,7 @@ const archive = ref({ const baseItems = ref([]); const internalItems = ref([]); +const scrollHeight = ref(0); const accountStore = useAccountStore(); const { account, doctorInfo } = storeToRefs(accountStore); @@ -336,6 +339,7 @@ async function savePatch(patch) { } onLoad((options) => { + scrollHeight.value = Number(uni.getSystemInfoSync()?.windowHeight || 0) || 0; archiveId.value = options?.archiveId ? String(options.archiveId) : ''; loadFromStorage(); ensureDoctor().then(async () => { @@ -351,7 +355,12 @@ onShow(() => { diff --git a/pages/case/new-followup-record.vue b/pages/case/new-followup-record.vue index 3d37af2..ee2fc13 100644 --- a/pages/case/new-followup-record.vue +++ b/pages/case/new-followup-record.vue @@ -1,57 +1,61 @@