细节优化
parent
b798f6dcc8
commit
e4392c9ccc
2
App.vue
2
App.vue
|
|
@ -2889,7 +2889,7 @@
|
|||
if(temp !== undefined && this.is_tabbar_pages()) {
|
||||
obj.$vm.setData(
|
||||
{
|
||||
bottom_fixed_style: 'bottom:'+this.app_tabbar_height_value()+'px'
|
||||
bottom_fixed_style: 'bottom:'+((this.app_tabbar_height_value()-8)*2)+'rpx'
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@
|
|||
// 底部菜单距离底部的安全距离,减去20、默认的安全距离太高了
|
||||
var safe_area_insets_bottom = parseInt(uni.getSystemInfoSync().safeAreaInsets.bottom);
|
||||
if(safe_area_insets_bottom > 0) {
|
||||
safe_area_insets_bottom -= 20;
|
||||
safe_area_insets_bottom -= 24;
|
||||
}
|
||||
footer_height += safe_area_insets_bottom;
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ page {
|
|||
* 左侧导航
|
||||
*/
|
||||
.left-content-actual {
|
||||
padding-bottom: 120rpx;
|
||||
padding-bottom: 160rpx;
|
||||
}
|
||||
.left-content {
|
||||
width: 186rpx;
|
||||
|
|
@ -92,10 +92,10 @@ page {
|
|||
* 右侧内容
|
||||
*/
|
||||
.right-content-actual {
|
||||
padding-bottom: calc(105rpx + env(safe-area-inset-bottom));
|
||||
padding-bottom: calc(145rpx + env(safe-area-inset-bottom));
|
||||
}
|
||||
.right-content-actual.base-mode-goods {
|
||||
padding-bottom: calc(126rpx + env(safe-area-inset-bottom));
|
||||
padding-bottom: calc(166rpx + env(safe-area-inset-bottom));
|
||||
}
|
||||
.goods-list-top-nav {
|
||||
position: sticky;
|
||||
|
|
|
|||
|
|
@ -690,7 +690,7 @@
|
|||
value = (this.is_base_mode_show_type == 0) ? 58 : 92;
|
||||
}
|
||||
// 内容高度
|
||||
value += (this.client_type == 'h5') ? 370 : 358;
|
||||
value += (this.client_type == 'h5') ? 370 : 328;
|
||||
// 桌码
|
||||
if(this.tablecode != null) {
|
||||
value += 44;
|
||||
|
|
|
|||
Loading…
Reference in New Issue