认证,入驻,底部编辑块被遮挡问题修复

This commit is contained in:
donqi 2023-02-26 18:27:16 +08:00
parent ac02c303c3
commit c5413b874d
3 changed files with 13 additions and 5 deletions

View File

@ -250,6 +250,7 @@
</button> </button>
</view> </view>
</view> </view>
<view class="bottom-site-bar"></view>
<!-- 下一步 --> <!-- 下一步 -->
<view class="cu-bar tabbar border shop fixed-bottom-bar bg-back"> <view class="cu-bar tabbar border shop fixed-bottom-bar bg-back">
<button class="margin-lr-sm cu-btn bg-white shadow-blur long-btn" @click="preStep">上一步</button> <button class="margin-lr-sm cu-btn bg-white shadow-blur long-btn" @click="preStep">上一步</button>

View File

@ -56,13 +56,14 @@
</button> </button>
</view> </view>
</view> </view>
<view class="bottom-site-bar"></view>
<!-- 下一步 --> <!-- 下一步 -->
<view class="cu-bar tabbar border shop fixed-bottom-bar bg-back"> <view class="cu-bar tabbar border shop fixed-bottom-bar bg-back">
<button class="margin-lr cu-btn bg-main-color shadow-blur long-btn" @click="nextStep">下一步</button> <button class="margin-lr cu-btn bg-main-color shadow-blur long-btn" @click="nextStep">下一步</button>
</view> </view>
</view> </view>
<!-- 服务技能 --> <!-- 服务技能 -->
<view v-if="curStep === 1" class="margin-top-sm"> <view v-if="curStep === 1">
<view class="margin-bottom-with-bar"> <view class="margin-bottom-with-bar">
<view class="bg-white margin-top-sm" v-for="(item, index) in servSkill"> <view class="bg-white margin-top-sm" v-for="(item, index) in servSkill">
<view class="cu-bar padding-lr solid-bottom"> <view class="cu-bar padding-lr solid-bottom">
@ -105,6 +106,7 @@
</button> </button>
</view> </view>
</view> </view>
<view class="bottom-site-bar"></view>
<!-- 下一步 --> <!-- 下一步 -->
<view class="cu-bar tabbar border shop fixed-bottom-bar bg-back"> <view class="cu-bar tabbar border shop fixed-bottom-bar bg-back">
<button class="margin-lr-sm cu-btn bg-white shadow-blur long-btn" @click="preStep">上一步</button> <button class="margin-lr-sm cu-btn bg-white shadow-blur long-btn" @click="preStep">上一步</button>
@ -193,6 +195,7 @@
</button> </button>
</view> </view>
</view> </view>
<view class="bottom-site-bar"></view>
<!-- 下一步 --> <!-- 下一步 -->
<view class="cu-bar tabbar border shop fixed-bottom-bar bg-back"> <view class="cu-bar tabbar border shop fixed-bottom-bar bg-back">
<button class="bg-white long-btn margin-lr" @click="preStep">上一步</button> <button class="bg-white long-btn margin-lr" @click="preStep">上一步</button>

View File

@ -284,3 +284,7 @@
.readonlyPicker { .readonlyPicker {
background-color: #EEEEEE; background-color: #EEEEEE;
} }
.bottom-site-bar {
height: calc(120rpx + env(safe-area-inset-bottom) / 2);
}