written-off.vue 1.2 KB
<template>
	<view class="written-off">
		<view class="box">
			<view class="icon">
				<icon type="warn" size="53"></icon>
			</view>
			<view class="text">
				<view class="title">已注销</view>
				<view class="describe">您的账号已注销,请更换账号登录</view>
			</view>
		</view>

		<view class="btn button_warp">
			<c-button type="confirm" shape="circle" text="联系客服" @click="popPhoneNumber" ></c-button>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {
			popPhoneNumber(){
				uni.makePhoneCall({
					phoneNumber:"150-7142-1900"
				})
			},
		}
	}
</script>

<style lang="scss" scoped>
	.written-off {
		width: 100%;
		height: 100%;
		position: relative;

		.box {
			.icon {
				padding: 308rpx 0 0 0;
				text-align: center;
			}

			.text {
				text-align: center;

				.title {
					font-size: 34rpx;
					color: #000000;
					line-height: 48rpx;
					margin: 44rpx 0 32rpx 0;
				}

				.describe {
					font-size: 28rpx;
					color: rgba(0, 0, 0, 0.5);
					line-height: 40rpx;
				}
			}
		}

		.btn {
			width: 100%;
			height: 144rpx;
			padding: 24rpx 32rpx;
			position: absolute;
			bottom: 0;
			left: 0;
			border-top: 2rpx solid #f0f0f1;
		}
	}
</style>