bug修复
This commit is contained in:
parent
10ec0a4b15
commit
b0a324f83e
|
|
@ -2,8 +2,8 @@
|
||||||
"name" : "项目全过程影像管理工具",
|
"name" : "项目全过程影像管理工具",
|
||||||
"appid" : "__UNI__F75AFA9",
|
"appid" : "__UNI__F75AFA9",
|
||||||
"description" : "项目全过程影像管理工具",
|
"description" : "项目全过程影像管理工具",
|
||||||
"versionName" : "1.0.1",
|
"versionName" : "1.0.2",
|
||||||
"versionCode" : 101,
|
"versionCode" : 102,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
|
|
||||||
|
|
@ -454,12 +454,9 @@ onReachBottom(
|
||||||
)
|
)
|
||||||
|
|
||||||
// 监听滚动事件 显示返回顶部小图标
|
// 监听滚动事件 显示返回顶部小图标
|
||||||
onPageScroll(
|
onPageScroll((e) => {
|
||||||
(e) => {
|
scrollTop.value = e.scrollTop
|
||||||
scrollTop.value = e.scrollTop
|
})
|
||||||
},
|
|
||||||
{ passive: true },
|
|
||||||
)
|
|
||||||
|
|
||||||
// 获取照片分类
|
// 获取照片分类
|
||||||
const getClassCountData = async () => {
|
const getClassCountData = async () => {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<up-icon name="list" size="20" @tap="onHandleSelect"></up-icon>
|
<up-icon name="list" size="20" @tap="onHandleSelect"></up-icon>
|
||||||
</template>
|
</template>
|
||||||
</up-navbar>
|
</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_1" :cardTitle="`照片上传`" style="margin-top: 33rpx" />
|
||||||
<IconCard :iconList="iconList_2" :cardTitle="`照片查询`" />
|
<IconCard :iconList="iconList_2" :cardTitle="`照片查询`" />
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -300,7 +300,8 @@ const getProcedureData = async (pid) => {
|
||||||
.workbenches-container {
|
.workbenches-container {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #f6f9ff;
|
background-color: #f6f9ff;
|
||||||
padding-top: 44px;
|
// padding-top: 44px;
|
||||||
|
// margin-top: 44px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
// overflow: hidden;
|
// overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue