You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mianxueyoupin/pages/user/vipBuyRecord.vue

85 lines
1.6 KiB

<template>
<view class="vipBuyRecord">
<view class="vipBuy" v-for="(item,index) in 6">
<view class="time">
<view class="result">
<view class="flag">√</view>
<text>购买成功</text>
</view>
<view class="timeText">
2024-10-22 :22:23
</view>
</view>
<view class="itemText">
超V会员:年卡
</view>
<view class="itemText">
实付:¥99.00
</view>
<view class="itemText">
有效期:2024-10-20 至 2025-10-22
</view>
<view class="itemText">
订单编号2356890
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.vipBuyRecord{
min-height: calc(100vh);
padding:0 24rpx;
background-color: #F2F3F4;
padding-bottom: 20rpx;
border-top: 1px solid transparent;
.vipBuy{
background: #FFFFFF;
border-radius: 20rpx;
padding: 30rpx 20rpx;
margin-top:20rpx;
.time{
display: flex;
align-items: center;
justify-content: space-between;
.flag{
width: 30rpx;
height: 30rpx;
background-color: #EB6100;
border-radius: 50%;
margin-right:16rpx;
font-size: 24rpx;
text-align: center;
color: #fff;
line-height: 30rpx;
}
.result{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 30rpx;
color: #222222;
display: flex;
align-items: center;
}
.timeText{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 24rpx;
color: #999999;
}
}
.itemText{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-top:23rpx;
}
}
}
</style>