3.13 五点更新

This commit is contained in:
zoujiandong
2026-03-13 17:13:09 +08:00
parent 4042df6762
commit ca69dfbe4b
11 changed files with 51 additions and 15 deletions
+16 -4
View File
@@ -2,7 +2,8 @@
<navBar :title="'新的患者'" />
<view class="new-patient-page">
<!-- 提醒区域 -->
<view class="reminder-section">
<view class="contentbox">
<view class="reminder-section">
<view class="reminder-icon">
<up-image :src="tipImg" width="35rpx" height="42rpx"></up-image>
</view>
@@ -51,8 +52,10 @@
</view>
</view>
</view>
<empty v-if="applyList.length == 0 && historyList.length == 0" :emptyDesc="'暂无新随访申请患者'" />
</view>
<!-- 底部按钮 -->
<view class="bottom-button">
<button class="add-patient-btn" @click="addPatient">加患者</button>
@@ -242,7 +245,7 @@ const addPatient = () => {
<style lang="scss" scoped>
.new-patient-page {
min-height: 100vh;
background-color: #f5f5f5;
}
@@ -337,12 +340,21 @@ const addPatient = () => {
margin-right: 60rpx; // 为了保持标题居中
}
}
.contentbox{
top: calc(var(--status-bar-height) + 44px);
position: fixed;
left: 0;
right: 0;
bottom: 100rpx;
overflow-y: scroll;
z-index: 1;
box-sizing: border-box;
}
.reminder-section {
display: flex;
align-items:center;
padding: 30rpx;
margin-top: calc(var(--status-bar-height) + 44px);
background-color: #ffffff;