优化优惠券弹窗/用户中心

This commit is contained in:
gyq
2025-09-27 15:52:09 +08:00
parent f06d8756e1
commit f066bd171b
2 changed files with 13 additions and 6 deletions

View File

@@ -40,9 +40,7 @@
</view> </view>
<view class="time"> <view class="time">
<view class="row"> <view class="row">
<text class="t"> <text class="t">有效期至{{ dayjs(val.validStartTime).format('YYYY.M.D') }}-{{ dayjs(val.validEndTime).format('YYYY.M.D') }}</text>
有效期至{{ dayjs(val.validStartTime).format('YYYY.M.D') }}-{{ dayjs(val.validEndTime).format('YYYY.M.D') }}
</text>
</view> </view>
</view> </view>
</view> </view>
@@ -235,9 +233,17 @@ onMounted(() => {
} }
} }
.title { .title {
width: 280upx;
font-size: 28upx; font-size: 28upx;
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;
/* 禁止换行 */
white-space: nowrap;
/* 超出部分隐藏 */
overflow: hidden;
/* 显示省略号 */
text-overflow: ellipsis;
/* 确保元素有明确的宽度限制(可继承父元素宽度或手动设置) */
} }
.time { .time {
display: flex; display: flex;
@@ -249,7 +255,7 @@ onMounted(() => {
display: flex; display: flex;
align-items: center; align-items: center;
.t { .t {
font-size: 10px; font-size: 18upx;
color: #c50914; color: #c50914;
} }
} }
@@ -266,6 +272,7 @@ onMounted(() => {
justify-content: center; justify-content: center;
border-radius: 50%; border-radius: 50%;
background-color: #fe413d; background-color: #fe413d;
box-shadow: 0 8upx 8upx rgba(254, 65, 61, 0.6);
.t { .t {
color: #fff; color: #fff;
font-size: 20upx; font-size: 20upx;

View File

@@ -63,7 +63,7 @@
<view class="vip u-m-t-40"> <view class="vip u-m-t-40">
<view class="u-flex u-flex-between u-m-t-20"> <view class="u-flex u-flex-between u-m-t-20">
<view class="u-flex"> <view class="u-flex">
<image style="width: 50rpx;height: 37rpx;" src="/static/icon/vip.png" mode="aspectFill"> <image style="width: 50rpx;height: 40rpx;" src="/static/icon/vip.png" mode="aspectFill">
</image> </image>
<text class="color-333 font-14 u-m-l-20">会员</text> <text class="color-333 font-14 u-m-l-20">会员</text>
</view> </view>
@@ -101,7 +101,7 @@
</view> </view>
<view class="my_list_item_right u-flex "> <view class="my_list_item_right u-flex ">
<text v-if="item.type=='score'" class="font-12 ">{{userInfo.accountPoints || 0}}</text> <text v-if="item.type=='score'" class="font-12 ">{{userInfo.accountPoints || 0}}</text>
<text v-else-if="item.type=='my_coupon'" class="font-12 ">{{userInfo.couponNum || 0}}</text> <!-- <text v-else-if="item.type=='my_coupon'" class="font-12 ">{{userInfo.couponNum || 0}}</text> -->
<text class="font-12 color-999" v-else>查看</text> <text class="font-12 color-999" v-else>查看</text>
<u-icon class="u-m-t-2" name="arrow-right" color="#999999" size="12"></u-icon> <u-icon class="u-m-t-2" name="arrow-right" color="#999999" size="12"></u-icon>
</view> </view>