uniapp 充值规则样式

pull/7/head^2
Jruome 2023-05-31 17:20:38 +08:00
parent 5846fe8425
commit 4616cd7ee9
1 changed files with 17 additions and 3 deletions

View File

@ -24,6 +24,7 @@
</view> </view>
</view> </view>
<view class="box-privilege"> <view class="box-privilege">
<view class=""></view>
<view class="box-title"> <view class="box-title">
<image src='../../static/images/memberTitle.png'></image> <image src='../../static/images/memberTitle.png'></image>
</view> </view>
@ -35,7 +36,10 @@
<text>点击右侧按钮</text> <text>点击右侧按钮</text>
</view> </view>
</view> </view>
<view class="privilege-right" @click="handleRule"></view> <view class="privilege-right" @click="handleRule">
<text>查看</text>
<view></view>
</view>
</view> </view>
</view> </view>
<paymentMember :payMode='payMode' :pay_close="pay_close" @onChangeFun='onChangeFun' :payInfo="payInfo"> <paymentMember :payMode='payMode' :pay_close="pay_close" @onChangeFun='onChangeFun' :payInfo="payInfo">
@ -460,13 +464,13 @@
.privilege-list { .privilege-list {
width: 100%; width: 100%;
margin: 54rpx 30rpx 20rpx 30rpx; margin: 54rpx 30rpx 20rpx 30rpx;
height: 109rpx; min-height: 110rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 20rpx; border-radius: 20rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 0 20rpx; padding: 3% 20rpx 1% 20rpx;
.privilege-left { .privilege-left {
display: flex; display: flex;
@ -509,6 +513,16 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
position: relative;
view {
position: absolute;
right: 0;
top: -24%;
width: 18rpx;
height: 6rpx;
background: #FEAC49;
border-radius: 3rpx;
}
} }
} }