master
gongfuxiang 2024-09-27 18:46:50 +08:00
parent 47d5c0407d
commit bfb8d05e66
2 changed files with 8 additions and 11 deletions

View File

@ -22,7 +22,7 @@
</block> </block>
<view class="category-container"> <view class="category-container">
<!-- 分类内容 --> <!-- 分类内容 -->
<view :class="'category-content bs-bb pr ' + (category_show_level == 0 ? 'goods-model' : '')" :style="'height:calc(100vh - ' + (search_height + window_bottom_height) + 'px);'"> <view :class="'category-content bs-bb pr ' + (category_show_level == 0 ? 'goods-model' : '')" :style="'height:calc(100vh - ' + search_height + 'px);'">
<block v-if="category_show_level == 1"> <block v-if="category_show_level == 1">
<!-- 一级模式 --> <!-- 一级模式 -->
<scroll-view scroll-y class="ht-auto" :show-scrollbar="false"> <scroll-view scroll-y class="ht-auto" :show-scrollbar="false">
@ -452,11 +452,6 @@
popup_status: false, popup_status: false,
// //
search_height: 0, search_height: 0,
// tab - H5
window_bottom_height: 0,
// #ifdef H5
window_bottom_height: uni.getWindowInfo().windowBottom || 50,
// #endif
// //
left_content_actual_style: '', left_content_actual_style: '',
right_content_actual_style: '', right_content_actual_style: '',

View File

@ -272,11 +272,13 @@
<!-- 页面已加载 --> <!-- 页面已加载 -->
<block v-if="load_status == 1"> <block v-if="load_status == 1">
<!-- 结尾 --> <block v-if="data_mode != 3">
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line> <!-- 结尾 -->
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
<!-- 版权信息 --> <!-- 版权信息 -->
<component-copyright></component-copyright> <component-copyright></component-copyright>
</block>
<!-- 非diy模式 --> <!-- 非diy模式 -->
<block v-if="data_mode != 3"> <block v-if="data_mode != 3">
@ -295,7 +297,7 @@
</block> </block>
<!-- 公共 --> <!-- 公共 -->
<component-common></component-common> <component-common :propIsFooterSeat="false"></component-common>
</view> </view>
</template> </template>