123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <template>
- <view>
- <u-navbar title="注销账号" title-color="#101010"></u-navbar>
- <view class="background">
- <view class="main">
- <view class="top">
- <view class="img-box">
- <image class="img" src="@/assets/img/vessel2.png" mode=""></image>
- </view>
- </view>
- <view class="content">
- <p>我们很遗憾您做出注销帐号的决定,在决定注销前请您仔细阅读以下内容:</p>
- <p>1.您应确保您有权决定该账户的注销事宜,不侵犯任何第三方的合法权益,如因此引发任何投诉争议,由您自行承担。</p>
- <p>2.帐号注销后您无法再使用本产品的各项服务,您的个人信息及使用记录也将被清空。</p>
- <p>3.如您已被国家机关调查或正处于诉讼、仲裁程序中,请注意,注销您的帐号并不代表此帐号注销前的帐号行为和相关责任得到豁免或减轻。</p>
- </p>
- <view class="notice">
- 注:本平台暂不提供线上注销账号功能,如您确有注销需求,可拨打客服电话沟通解决。
- </view>
- </view>
- <u-modal v-model="openModalBl" @confirm="confirmPhone" confirm-text="拨打电话" confirm-color="#606266"
- :show-cancel-button="true" ref="uModal" :asyncClose="true" title="客服电话" :content="content"
- :content-style="{fontSize: '24px',color: '#101010'}"></u-modal>
- </view>
- </view>
- <!-- 底部 -->
- <view class="bottom" >
- <button class="service" @click="openModalBl=true" >
- <view>
- <image class="img" src="@/assets/img/riFill-customer-service-2-fill 1.svg" mode=""></image>
- </view>
- 客服电话(7:00-24:00)
- </button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content: "400-8899-619",
-
- openModalBl:false,
- }
- },
- methods: {
- confirmPhone() {
- this.openModalBl = false;
- uni.makePhoneCall({
- phoneNumber: this.content //仅为示例
- });
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .background {
- position: relative;
- height: 200px;
- background: linear-gradient(180deg, rgba(255, 217, 217, 1) 0%, rgba(255, 217, 217, 0) 100%);
- .main {
- position: absolute;
- top: 24rpx;
- left: 32rpx;
- right: 32rpx;
- background-color: #fff;
- border-radius: 8px;
- overflow: hidden;
- .top {
- background: linear-gradient(180deg, rgba(255, 100, 106, 1) 0%, rgba(255, 161, 164, 1) 98%);
- height: 204rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- .img-box {
- .img {
- width: 144rpx;
- height: 144rpx;
- // box-shadow: 0px 6px 10px 0px rgba(255,0,9,1);
- }
- }
- }
- .content {
- padding: 32rpx;
- line-height: 46rpx;
- color: rgb(16,16,16);
- p{
- margin-bottom: 16rpx;
- }
- .notice{
- font-weight: bold;
- }
- }
- }
- }
- // 底部
- .bottom {
- background-color: #fff;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 24rpx 32rpx;
- .service {
- display: flex;
- justify-content: center;
- align-items: center;
- color: rgba(255, 255, 255, 1);
- font-size: 32rpx;
- border-radius: 50px;
- background: linear-gradient(-88.46deg, rgba(34, 109, 198, 1) 2.59%, rgba(9, 158, 237, 1) 97.02%);
- }
- .img {
- width: 40rpx;
- height: 40rpx;
- vertical-align: middle;
- margin-right: 16rpx;
- }
- }
- </style>
|