remove-account.vue
2.0 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<template>
<view style="min-height: 100%;">
<view class="title">账户注销</view>
<view class="sub_title" style="margin-top: 20rpx;" >账号主体:{{getPhone}}</view>
<view class="content">
<text class="text">
如您注销{{vuex_appName}}服务,则当前服务在APP、小程序等留存的信息均将被清空且无法被找回。
具体信息包括但不限于以下信息:
· 智用工用户注册账号
· 智用工个人简历信息
· 您在智用工的求职记录
· 您在智用工收藏的职位
</text>
</view>
<view class="footer">
<c-button type="confirm" shape="circle" @click="removeAccount" :disabled="false" text="注销申请"></c-button>
</view>
</view>
</template>
<script>
import {
replaceTextToStar
} from '@/common/commonUtil.js'
import {
mapState,
mapActions
} from 'vuex'
export default {
data() {
return {
}
},
computed: {
...mapState({
getPhone(state) {
let phone = state.vuex_user.phone;
return replaceTextToStar(phone);
},
}),
},
methods: {
removeAccount() {
this.$u.route('/pages/student/my/again-remove/again-remove');
}
}
}
</script>
<style lang="scss" scoped>
.title{
font-size: 44rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
margin-top: 48rpx;
text-align: center;
}
.sub_title{
font-size: 17px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(0, 0, 0, 0.65);
line-height: 24px;
text-align: center;
}
.content{
width: 88%;
background: rgba(0, 0, 0, 0.03);
padding: 48rpx;
margin:48rpx auto;
.text{
font-size: 30rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(0, 0, 0, 0.65);
line-height: 42rpx;
}
}
.footer {
width: 100%;
height: 130rpx;
padding: 20rpx 40rpx;
background: #FFFFFF;
position: fixed;
bottom: 0;
left: 0;
z-index: 99;
border-top: 2rpx solid #F0F0F1;
}
</style>