From 0b9141c17270d83b05d8b51139989644a4b84763 Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期四, 12 九月 2024 11:34:31 +0800 Subject: [PATCH] update 会员积分相关的优化 --- sub_pages/customer/coupon/good-self.vue | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/sub_pages/customer/coupon/good-self.vue b/sub_pages/customer/coupon/good-self.vue index 440d59d..e336979 100644 --- a/sub_pages/customer/coupon/good-self.vue +++ b/sub_pages/customer/coupon/good-self.vue @@ -15,9 +15,14 @@ <image :lazy-load="true" :src="item.cover" class="cover" mode="scaleToFill"></image> </view> <view class="info flex1"> - <view class="title"> + <view class="title flex"> {{item.name||''}} - <radio :checked="isIngood(item)" @click.stop="updateSelectGood(item)" v-if="source==='shopping'" class="select-coupon"></radio> + <!-- <radio :checked="isIngood(item)" @click.stop="updateSelectGood(item)" v-if="source==='shopping'" class="select-coupon"></radio> --> + + <view :style="{ 'margin-right': '20rpx'}" @click.stop="updateSelectGood(item)" + class="component-radio m-l-a" :class="[isIngood(item)?'cur':'']" v-if="source==='shopping'"> + + </view> </view> <view class="time word-e"> @@ -37,7 +42,7 @@ </view> </view> <view style="min-height: 140rpx;" v-if="source=='shopping'"></view> - <view class="bottom-button" @click="backpage()" v-if="source=='shopping'">返回订单结算</view> + <view class="bottom-button" @click="backpage()" v-if="source=='shopping'">确定选择</view> <!-- <view class="bottom-button" @click="toGoodAll">前往兑换</view> --> </view> @@ -197,9 +202,10 @@ font-weight: 600; font-size: 36rpx; color: #333333; - line-height: 60rpx; + line-height: 50rpx; text-align: left; position: relative; + margin-top: 20rpx; .select-coupon{ position: absolute; right: 10rpx; -- Gitblit v1.9.3