Feat(优惠券):UI调整(完成)

This commit is contained in:
modendeveloper
2024-09-09 22:47:08 +08:00
parent 11d40e719c
commit c9e2e6005c
2 changed files with 16 additions and 7 deletions
+2 -1
View File
@@ -33,7 +33,7 @@
<view <view
v-if="current === 0" v-if="current === 0"
:class="{ 'btn-disabled': current === 1 }" :class="{ 'btn-disabled': current === 1 }"
class="btn-done bold flex jc-center ai-center" class="btn-done bold flex jc-center ai-center v12-primary"
@click="setCoupon" @click="setCoupon"
> >
确定 确定
@@ -119,6 +119,7 @@ export default {
.list-box { .list-box {
max-height: 640rpx; max-height: 640rpx;
height: 640rpx;
margin-top: 32rpx; margin-top: 32rpx;
overflow-y: auto; overflow-y: auto;
} }
+14 -6
View File
@@ -38,14 +38,15 @@ export default {
<template> <template>
<view class="sub-section flex"> <view class="sub-section flex">
<view class="sub-section__item flex jc-center ai-center" :class="{'sub-section__active':index===0}" <view class="sub-section__item flex jc-center ai-center"
@click="change(0)"> @click="change(0)">
可使用 ({{ canUse }}) 可使用 ({{ canUse }})
</view> </view>
<view class="sub-section__item flex jc-center ai-center" :class="{'sub-section__active':index===1}" <view class="sub-section__item flex jc-center ai-center"
@click="change(1)"> @click="change(1)">
{{radioModel?'不可用':'已到期'}} ({{ notUse }}) {{radioModel?'不可用':'已到期'}} ({{ notUse }})
</view> </view>
<view class="sub-section__active" :style="{left: (80 + index * 360) + 'rpx'}"></view>
</view> </view>
</template> </template>
@@ -54,20 +55,27 @@ export default {
width: 686rpx; width: 686rpx;
height: 80rpx; height: 80rpx;
box-sizing: border-box; box-sizing: border-box;
border: 2rpx solid #FF564A; border-radius: 20rpx;
border-radius: 4rpx;
font-size: 32rpx; font-size: 32rpx;
overflow: hidden;
position: relative;
.sub-section__item { .sub-section__item {
width: 50%; width: 50%;
background: #FFFFFF; background: #FFFFFF;
color: #333333; color: #333333;
font-weight: bold; font-weight: bold;
position: relative;
} }
.sub-section__active { .sub-section__active {
background: #FF564A; position: absolute;
color: #FFFFFF; width: 140rpx;
height: 8rpx;
background: linear-gradient(to right, #C52733 0%, rgba(211,92,101,0.91) 54%, rgba(255,255,255,0.62) 100%);
border-radius: 0rpx 0rpx 26rpx 26rpx;
bottom: (80 - 34) / 2 * 1rpx;
transition: left ease-in-out 0.3s;
} }
} }
</style> </style>