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

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

@ -249,7 +249,8 @@
<text>继续添加特殊技能</text> <text>继续添加特殊技能</text>
</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

@ -55,14 +55,15 @@
<text>继续添加服务区域</text> <text>继续添加服务区域</text>
</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">
@ -104,7 +105,8 @@
<text>继续添加服务技能</text> <text>继续添加服务技能</text>
</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>
@ -192,7 +194,8 @@
<text>继续添加特殊技能</text> <text>继续添加特殊技能</text>
</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

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