zhaojs
2023-07-20 fc9bd6378d3bfbde6d5c71535757a3d44de8d8ff
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<template>
    <view class="accountSecurity-wrapper wrapperLayer borderBox">
        <titleBar :titleText='"账户与安全"' :pageForm='"accointSecurity"'></titleBar>
        <view class="pageContent-container colCen">
            <view class="empower-content colCen">
                <view class="keyvalueBox rowCenBet borderBox" v-if="false">
                    <view class="leftKey">
                        淘宝授权
                    </view>
                    <view class="rightvalue rowCen">
                        <view class="rightText">
                            淘宝授权
                        </view>
                        <view class="arrow-icon defIcon">
                            <image src="../../../static/images/goods/arrow.png" mode=""></image>
                        </view>
                    </view>
                </view>
                <view class="keyvalueBox rowCenBet borderBox" @click="bindingZFB()">
                    <view class="leftKey">
                        支付宝绑定
                    </view>
                    <view class="rightvalue rowCen">
                        <view class="rightText">
                            待绑定
                        </view>
                        <view class="arrow-icon defIcon">
                            <image src="../../../static/images/goods/arrow.png" mode=""></image>
                        </view>
                    </view>
                </view>
            </view>
            <view class="empower-content colCen" @click="modifyPass()">
                <view class="keyvalueBox rowCenBet borderBox">
                    <view class="leftKey">
                        修改密码
                    </view>
                    <view class="rightvalue rowCen">
                        <view class="arrow-icon defIcon">
                            <image src="../../../static/images/goods/arrow.png" mode=""></image>
                        </view>
                    </view>
                </view>
            </view>
            <view class="empower-content colCen">
                <view class="keyvalueBox rowCenBet borderBox" @click="cancellation()">
                    <view class="leftKey">
                        注销账户<span>(账户注销后无法恢复,请谨慎操作)</span>
                    </view>
                    <view class="rightvalue rowCen">
                        <view class="arrow-icon defIcon">
                            <image src="../../../static/images/goods/arrow.png" mode=""></image>
                        </view>
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import titleBar from '../../../components/backTitlebar.vue';
    export default {
        components: {
            titleBar
        },
        data() {
            return {
 
            }
        },
        methods: {
            modifyPass(){
                uni.navigateTo({
                    url:'../../login/modifyPass'
                })
            },
            cancellation() {
                uni.navigateTo({
                    url: './cancellation'
                })
            },
            bindingZFB() {
                uni.navigateTo({
                    url:'./bindingZFB'
                })
            }
        }
    }
</script>
 
<style lang="scss">
    .pageContent-container {
        width: 100%;
        display: flex;
 
        .empower-content {
            width: 100%;
            background-color: #FFFFFF;
            margin-top: 20rpx;
 
            .keyvalueBox {
                width: 100%;
                height: 100rpx;
                border-bottom: 1rpx solid #F2F2F2;
                padding: 0 30rpx;
 
                .leftKey {
                    font-size: 28rpx;
                    font-weight: 500;
                    color: #333333;
 
                    span {
                        font-size: 26rpx;
                        font-weight: 500;
                        color: #999999;
                    }
                }
 
                .rightvalue {
                    .rightText {
                        font-size: 24rpx;
                        font-weight: 400;
                        color: #999999;
                        margin-right: 15rpx;
                    }
 
                    .arrow-icon {
                        width: 10rpx;
                        height: 18rpx;
                    }
                }
            }
        }
    }
</style>