writtenOff.vue 1.5 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="footer">
			<view class="left_btn">
				<c-button type="confirm" shape="circle" @click="popPhoneNumber" text="联系客服"></c-button>
			</view>
		</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;
				}
			}
		}

		.footer {
			width: 100%;
			height: 96rpx;
			padding: 28rpx 30rpx;
			background: #FFFFFF;
			position: fixed;
			bottom: 0;
			left: 0;
			z-index: 99;
			border-top: 2rpx solid #E2E2E8;
		
			view {
				display: inline-block;
			}
		
			.left_btn {
				width: 690rpx;
				margin: 0 30rpx 0 0;
			}
		}
	}
</style>