jiuyiUniapp/jiuyi2/pages/mine/setting/safeCenter.vue

53 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
// 安全中心
</script>
<template>
<view class="app">
<!-- 账号挂失 账号冻结 账号注销 -->
<view class="container">
<view class="line">
<view class="title">账号挂失</view>
<view class="content">申诉找回九亿账号</view>
</view>
<view class="line">
<view class="title">账号冻结</view>
<view class="content">主动冻结账号保护账号资产</view>
</view>
<view class="line">
<view class="title">解冻账号</view>
<view class="content">风险解除后可选择解除冻结</view>
</view>
<view class="line">
<view class="title">账号注销</view>
<view class="content">提交申请清空当前账号</view>
</view>
</view>
</view>
</template>
<style lang="scss">
//
.container {
.line {
margin: 30rpx;
padding: 30rpx 25rpx;
background-color: #fff;
border-radius: 20rpx;
.title {
color: #333;
font-size: 34rpx;
}
.content {
margin-top: 10rpx;
color: #999;
font-size: 26rpx;
}
}
}
</style>