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

84 lines
1.5 KiB

3 months ago
<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;
3 months ago
padding-bottom: 20rpx;
3 months ago
.vipBuy{
background: #FFFFFF;
border-radius: 20rpx;
3 months ago
padding: 30rpx 20rpx;
margin-top:20rpx;
3 months ago
.time{
3 months ago
display: flex;
align-items: center;
justify-content: space-between;
3 months ago
.flag{
width: 30rpx;
height: 30rpx;
background-color: #EB6100;
border-radius: 50%;
margin-right:16rpx;
3 months ago
font-size: 24rpx;
text-align: center;
color: #fff;
line-height: 30rpx;
3 months ago
}
.result{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 30rpx;
color: #222222;
3 months ago
display: flex;
align-items: center;
3 months ago
}
.timeText{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 24rpx;
color: #999999;
}
}
3 months ago
.itemText{
font-family: Source Han Sans SC;
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-top:23rpx;
}
3 months ago
}
}
</style>