123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="page">
- <view style="margin-bottom: 40rpx;">在注销账户前,请您进行以下风险确认:</view>
- <view> 1.请您注意在【我-钱包]中确认您是否存在尚未使用或提现的余额、优惠券等权益,我们建议您在注销前妥当处理您的资产,例如提现至银行卡、使用相关权益等。</view>
- <view> 2.请您务必审慎阅读关于您权益的重要提示,确保在您注销账号时已处理完毕权益。</view>
- <button class="btn">注销账号</button>
- <view class="cancellation">
- 注销后账户不可恢复,请谨慎操作
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
-
- .page {
- background-color: #fff;
- height: 92.5vh;
- padding: 54rpx 44rpx;
- font-size: 30rpx;
- color: rgba(34, 34, 34, .7);
- .btn{
- background-color: #f83224;
- border-radius: 44rpx;
- color: #fff;
- margin-top: 108rpx
- }
- .cancellation{
- font-size: 24rpx;
- text-align: center;
- margin-top: 32rpx;
- }
- }
- </style>
|