From 06c7a41fe4680ae98d8ccd25b17d715b2a036532 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期一, 09 九月 2024 19:00:54 +0800 Subject: [PATCH] 1、 245-小程序-供应商-商品管理-回收站-平台或花农删除的商品全部到回收站,回收站增加恢复和删除的按钮,恢复可以将商品恢复到原来的状态,删除可以将此商品彻底删除 目前在回收站点击编辑上架等功能显示“商品未找到”点击删除也删不了商品 2、 255-小程序-供应商-增加同品类同等级价格排名,方便花农根据排名改价格(前后端修改) 3、252-小程序-花店-首页搜索、交易大厅搜索-1.点击分类显示下拉选择效果 2.热区扩大一些,点击<无法切换 --- components/footer/main.scss | 83 ++++++++++++++++++++++++++++++++++------- 1 files changed, 68 insertions(+), 15 deletions(-) diff --git a/components/footer/main.scss b/components/footer/main.scss index cfb2b85..dbec33b 100644 --- a/components/footer/main.scss +++ b/components/footer/main.scss @@ -21,9 +21,9 @@ flex: 1; border-radius: 50rpx; padding: 8rpx; + .item { - font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; // color: #A1A6B3; color: var(--topicgray); @@ -69,10 +69,10 @@ // top: -10px; // } .footer-icon{ - width: 28rpx; - height: 29rpx; + width: 36rpx; + height: 36rpx; } -.footer.farmer-footer{ +.footer.supplier-footer{ left: 50%; transform: translateX(-50%); background-image: unset; @@ -93,18 +93,71 @@ padding-top: 12rpx; line-height: 50rpx; .footer-icon{ - margin-top: 12rpx; + margin-top: 8rpx; } } - &.cur { - // font-weight: 600; - // font-size: 28rpx; - // color: #000000; - // text-align: left; - // font-style: normal; - background: #E1F0E7; - border-radius: 50rpx; - color: var(--topicolor); + + } + .footer-item.cur { + // font-weight: 600; + // font-size: 28rpx; + // color: #000000; + // text-align: left; + // font-style: normal; + background: #E1F0E7; + border-radius: 50rpx; + color: var(--topicolor); + } +} + +.footer.customer-footer{ + background-color: #fff; + bottom: 0rpx; + left:0rpx; + right: 0rpx; + width: 750rpx; + padding-bottom: 40rpx; + + .footer-item{ + flex: 1; + border-radius: 50rpx; + padding: 8rpx; + + .item { + + font-weight: 400; + color: #A1A6B3; + + flex-direction: column; + align-items: center; + text-align: center; + min-width: 100rpx; + font-size: 24rpx; + line-height: 34rpx; + + min-height: 40rpx; + + .footer-icon.0 { + width: 37rpx; + height: 43rpx; + } + .footer-icon.1 { + width: 38rpx; + height: 39rpx; + } + .footer-icon.2 { + width: 39rpx; + height: 38rpx; + } + .footer-icon.3 { + width: 31rpx; + height: 38rpx + } + } + .item.cur { + color: #20613D; } } -} \ No newline at end of file + +} + \ No newline at end of file -- Gitblit v1.9.3