uni-z-paging
uni-z-paging copied to clipboard
NVUE 安卓(iOS 和 H5 正常) loading slot flex: 1 无效,底部存在空白
编译平台 npm
VUE版本 vue2
运行平台 安卓(存在问题),iOS(正常),H5(正常)
z-paging版本 2.7.11
问题描述
无效:
<!-- 全屏Loading -->
<component :is="nViewIs" v-if="showLoading&&zSlots.loading&&!loadingFullFixed" :class="{'z-paging-content-fixed':usePageScroll}" style="flex:1" :style="[chatRecordRotateStyle]">
<slot name="loading" />
</component>
修复后:
<!-- 全屏Loading -->
<component :is="nViewIs" v-if="showLoading&&zSlots.loading&&!loadingFullFixed" :class="{'z-paging-content-fixed':usePageScroll}" style="flex:1 !important;" :style="[chatRecordRotateStyle]">
<slot name="loading" />
</component>