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.
72 lines
1.1 KiB
72 lines
1.1 KiB
<template>
|
|
<view class="content">
|
|
<view class="center_son">
|
|
<view class="cicle center_dis">
|
|
<text>√</text>
|
|
</view>
|
|
<view class="text_posi">
|
|
会员购买成功
|
|
</view>
|
|
<view class="text_posi colo_gr">
|
|
会员可用日期到2023年12月21号
|
|
</view>
|
|
<view style="width: 100%;">
|
|
<u-button :custom-style="customStyle">去用车</u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
customStyle: {
|
|
width: '100%',
|
|
marginTop: '50rpx',
|
|
color: '#fff',
|
|
background: '#000'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
background: #fff;
|
|
}
|
|
|
|
.center_son {
|
|
padding: 50rpx 40rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.cicle {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
background: #000;
|
|
border-radius: 50%;
|
|
color: #eee;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.text_posi {
|
|
margin-top: 30rpx;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.center_dis {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.colo_gr {
|
|
color: #8b8b8b;
|
|
}
|
|
</style> |