bug修复

This commit is contained in:
BianLzhaoMin 2025-05-22 15:29:58 +08:00
parent 10ec0a4b15
commit b0a324f83e
3 changed files with 8 additions and 10 deletions

View File

@ -2,8 +2,8 @@
"name" : "项目全过程影像管理工具",
"appid" : "__UNI__F75AFA9",
"description" : "项目全过程影像管理工具",
"versionName" : "1.0.1",
"versionCode" : 101,
"versionName" : "1.0.2",
"versionCode" : 102,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@ -454,12 +454,9 @@ onReachBottom(
)
//
onPageScroll(
(e) => {
scrollTop.value = e.scrollTop
},
{ passive: true },
)
onPageScroll((e) => {
scrollTop.value = e.scrollTop
})
//
const getClassCountData = async () => {

View File

@ -5,7 +5,7 @@
<up-icon name="list" size="20" @tap="onHandleSelect"></up-icon>
</template>
</up-navbar>
<view class="workbenches-container">
<view class="workbenches-container" :style="{ paddingTop: safeAreaInsets?.top + 44 + 'px' }">
<IconCard :iconList="iconList_1" :cardTitle="`照片上传`" style="margin-top: 33rpx" />
<IconCard :iconList="iconList_2" :cardTitle="`照片查询`" />
</view>
@ -300,7 +300,8 @@ const getProcedureData = async (pid) => {
.workbenches-container {
height: 100%;
background-color: #f6f9ff;
padding-top: 44px;
// padding-top: 44px;
// margin-top: 44px;
box-sizing: border-box;
// overflow: hidden;
}