From 12c48f04f9ea1a57781a6e8c5c9ef901eaad8518 Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期四, 05 九月 2024 22:31:17 +0800 Subject: [PATCH] merge 1.小程序-花店:1.1-浏览记录建议改成显示30条数据; 1.2-增加一个一键清空已失效商品 2.小程序-花店:增加热区跳转进入店铺 及 点击头像和名字也可以跳转进入店铺 3.小程序-花店:轮播图指示点优化去掉 4.小程序-花店:登录,注册失去焦点验证手机号 --- sub_pages/customer/coupon/good-all.vue | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/sub_pages/customer/coupon/good-all.vue b/sub_pages/customer/coupon/good-all.vue index 3110b03..1e4a572 100644 --- a/sub_pages/customer/coupon/good-all.vue +++ b/sub_pages/customer/coupon/good-all.vue @@ -14,7 +14,7 @@ <view class="flex"> <image src="../../../static/images/customer/coupon/icon-point.png" class="point-icon"> </image> - 1552 + {{currentInfo.currentPoint || 0}} <uni-icons class="icon" type="right" size="32"></uni-icons> </view> </view> @@ -135,7 +135,7 @@ }, changeScore(item){ this.query.pointLower = item.min || 0 - this.query.pointUpper = item.max || 10000000000 + this.query.pointUpper = item.max || 990000 this.refreshList() } }, @@ -157,8 +157,8 @@ }, ], query: { - pointLower: 1001, - pointUpper: 3000 + pointLower: 0, + pointUpper: 1000 }, scores: [{ min: 0, @@ -242,6 +242,7 @@ font-size: 24rpx; color: #44775A; text-align: center; + line-height: 46rpx; } } @@ -258,8 +259,9 @@ .query-scores { overflow-x: scroll; - width: max-content; + // width: max-content; .item { + min-width: fit-content; padding-left: 16rpx; padding-right: 16rpx; text-align: center; -- Gitblit v1.9.3