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.
65 lines
1.1 KiB
65 lines
1.1 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;
|
||
|
.vipBuy{
|
||
|
background: #FFFFFF;
|
||
|
border-radius: 20rpx;
|
||
|
.time{
|
||
|
.flag{
|
||
|
width: 30rpx;
|
||
|
height: 30rpx;
|
||
|
background-color: #EB6100;
|
||
|
border-radius: 50%;
|
||
|
margin-right:16rpx;
|
||
|
}
|
||
|
.result{
|
||
|
font-family: Source Han Sans SC;
|
||
|
font-weight: 400;
|
||
|
font-size: 30rpx;
|
||
|
color: #222222;
|
||
|
|
||
|
}
|
||
|
.timeText{
|
||
|
font-family: Source Han Sans SC;
|
||
|
font-weight: 400;
|
||
|
font-size: 24rpx;
|
||
|
color: #999999;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|