diy菜单

master
gongfuxiang 2024-09-26 14:28:07 +08:00
parent 8fbf55ad7c
commit aeb702c1b6
2 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@
//
footer_height_value_event(value) {
this.setData({
footer_height_value: value*2
footer_height_value: (value*2)+40
});
this.$emit('footer-height', value);
}

View File

@ -702,12 +702,12 @@
//
var left_style = '';
if(this.category_goods_is_show_cart_nav == 1) {
left_style = 'height: calc(100% - 100rpx - '+this.footer_height_value+'px);';
left_style = 'height: calc(100% - 100rpx - '+(this.footer_height_value+10)+'px);';
}
//
var right_style = '';
if(this.category_goods_is_show_cart_nav == 1 && this.common_site_type != 1) {
right_style = 'padding-bottom: calc(105rpx + '+this.footer_height_value+'px);';
right_style = 'padding-bottom: calc(105rpx + '+(this.footer_height_value+10)+'px);';
}
this.setData({
left_content_actual_style: left_style,
@ -1382,7 +1382,7 @@
//
footer_height_value_event(value) {
this.setData({
footer_height_value: value
footer_height_value: value+10
});
this.content_actual_size_handle();
}