diff --git a/pages/goods-category/goods-category.css b/pages/goods-category/goods-category.css index d904af6a..355e55e9 100644 --- a/pages/goods-category/goods-category.css +++ b/pages/goods-category/goods-category.css @@ -267,36 +267,19 @@ * 底部导航 */ .botton-nav { - width: calc(100% - 40rpx); + width: calc(100% - 60rpx); left: auto; bottom: 20rpx; z-index: 2; - margin-left: 20rpx; - background: linear-gradient(132deg, #EBEBEB 0%, #F7F7F7 100%); - box-shadow: 0rpx 4rpx 8rpx 0px rgba(0, 0, 0, 0.16); + margin-left: 20rpx; + box-shadow: 0rpx 4rpx 8rpx 0px rgba(0, 0, 0, 0.16); + line-height: 84rpx; + height: 84rpx; } .botton-nav .cart .badge-icon { top: -20rpx; right: -2rpx; } -.botton-nav button { - width: 160rpx; - line-height: 84rpx; - height: 84rpx; - padding: 0 38rpx; - border: 0; - /* #ifdef MP-QQ */ - padding-top: 0; - padding-bottom: 0; - /* #endif */ -} -.botton-nav .cart-total-price { - padding-left: 20rpx; - width: calc(100% - 260rpx); -} -.cart { - padding-left: 40rpx; -} /** * 购物车 @@ -309,7 +292,7 @@ } .cart-content { left: auto; - bottom: 130rpx; + bottom: 150rpx; width: calc(100% - 40rpx); z-index: 6; max-width: calc(800px - 40rpx); diff --git a/pages/goods-category/goods-category.vue b/pages/goods-category/goods-category.vue index 4b4ee943..e6326daa 100644 --- a/pages/goods-category/goods-category.vue +++ b/pages/goods-category/goods-category.vue @@ -329,20 +329,20 @@ - + - + - + {{ currency_symbol }} {{ (cart || null) == null ? 0 : cart.total_price || 0 }} - + @@ -682,18 +682,18 @@ // 左侧 var left_style = ''; if(this.category_goods_is_show_cart_nav == 1) { - left_style = 'height: calc(100% - 100rpx - '+(this.footer_height_value+20)+'rpx);'; + left_style = 'height: calc(100% - 120rpx - '+(this.footer_height_value+20)+'rpx);'; } // 右侧 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+20)+'rpx);'; + right_style = 'padding-bottom: calc(120rpx + '+(this.footer_height_value+20)+'rpx);'; } this.setData({ left_content_actual_style: left_style, right_content_actual_style: right_style, botton_nav_style: 'bottom: calc(20rpx + '+this.footer_height_value+'rpx);', - cart_content_style: 'bottom: calc(130rpx + '+this.footer_height_value+'rpx);', + cart_content_style: 'bottom: calc(150rpx + '+this.footer_height_value+'rpx);', }); },