fix: 计划查看-头部空白高度修复

This commit is contained in:
wangzhuo
2025-09-01 13:29:47 +08:00
parent 036f2a61bf
commit c10a0be121
4 changed files with 61 additions and 72 deletions

View File

@@ -1,12 +1,5 @@
import request from "@/utils/request"
export function getPersonalPlanList(params) {
return request.post({
url: '/getPersonalPlanList',
params
})
}
// 获取用户信息
export function getUserInfo(data) {
return request.get({
url: '/crm/app/user/getUserInfo',

View File

@@ -8,7 +8,7 @@
<!-- #endif -->
<!-- 高度来避免头部遮挡 -->
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
<view class="top-height"></view>
<view class="white-bg">
<navigator url="/pages/business/CRM/plan/myPlan">

View File

@@ -11,8 +11,7 @@
</customHeader>
<!-- 高度来避免头部遮挡 -->
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
<view class="top-height"></view>
<!-- 正文内容 -->
<view>
@@ -144,10 +143,7 @@ const mescrollRef = ref(null);
const upOption = ref({
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../static/images/mescroll-empty.png"
},
empty: {tip: '~ 空空如也 ~'},
textLoading: '加载中...',
textNoMore: '已经到底了'
});