written-off.vue
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<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>