zhaojs
2023-07-25 b4e86325675725c34dc6c43ab8dd2b3533eb6887
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<template>
    <view class="login-wrapper wrapperLayer colCen">
        <titleBar titleText='' :pageForm='"loginPage"' @backIndex="backHome"></titleBar>
        <view class="pageContent borderBox colCen">
            <view class="titleText">
                设置密码
            </view>
 
            <view class="input-container colCen">
                <view class="outSidebox rowCenBet" data-type='pass' :class="selectedInput=='pass'?'outSidebox-active':''">
                    <input @focus="changeType" @blur="cleanActive" @confirm="setPass" data-type='pass' type="text" password v-model="pass"
                     placeholder="请输入密码" placeholder-class="input-placeHolder" />
                </view>
            </view>
            <view class="txtTips">
                密码由8-16个字符组成。必须包含字母和数字两种类型。
            </view>
 
            <view class="login-btn rowCenCen" :class="pass?'colorfulbtn':''" @click="setPass()">
                <view class="btn-font">
                    完成
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import titleBar from '../../components/backTitlebar.vue'
    export default {
        components: {
            titleBar
        },
        data() {
            return {
                pass: '',
                selectedInput: ''
            };
        },
        onLoad() {
        },
        methods: {
            backHome(){
                uni.switchTab({
                    url:'../index/index'
                })
            },
            changeType(e) {
                this.selectedInput = e.target.dataset.type
            },
            cleanActive() {
                this.selectedInput = ''
            },
            setPass() {
                var that = this;
                var str = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/;
                if (str.test(this.pass)) {
                    this.$u.api.setPwd({
                        pwd: this.pass
                    }).then(e => {
                        if(e.code != 0) return that.$alert(e.msg);
                        that.$alert('设置成功');
                        setTimeout(function(){
                            uni.switchTab({
                                url:'../mine/mine'
                            })
                        },1000)
                        
                    }).catch(function (err) {
                    })
                } else {
                    uni.showToast({
                        title: '密码不符合要求,请输入8~16位的数字与字母的组合',
                        icon: 'none',
                        position: 'bottom',
                        duration: 3000
                    });
                }
            }
        }
    };
</script>
 
<style lang="scss">
    .login-wrapper {
        width: 100%;
        min-height: 100vh;
        background-color: #FFFFFF;
 
        .pageContent {
            width: 100%;
            padding: 0 60rpx;
 
            .titleText {
                width: 100%;
                font-size: 42rpx;
                font-weight: bold;
                color: #333333;
                margin: 60rpx 0;
            }
 
            .input-container {
                width: 100%;
                margin-bottom: 20rpx;
 
                .outSidebox {
                    width: 100%;
                    height: 85rpx;
                    border-bottom: 2rpx solid #F1F1F1;
 
                    .input-placeHolder {
                        font-size: 34rpx;
                        font-weight: 500;
                        color: #CACACA;
                    }
 
                    input {
                        font-size: 34rpx;
                        font-weight: 500;
                        color: #222222;
                    }
 
                    .hidepass {
                        font-size: 32rpx;
                        font-weight: 800;
                        color: #CACACA;
                    }
 
                    .getcodebox {
                        font-size: 28rpx;
                        white-space: nowrap;
                        font-weight: 400;
                        color: #FF2851;
                        pointer-events: none;
                    }
 
                    .colorTxt {
                        pointer-events: auto;
                    }
                }
 
                .outSidebox-active {
                    border-bottom: 2rpx solid #FF2851;
                }
            }
 
            .txtTips {
                font-size: 26rpx;
                font-weight: 400;
                color: #999999;
                line-height: 38rpx;
            }
 
            .login-btn {
                width: 100%;
                height: 86rpx;
                background: #E2E2E2;
                border-radius: 43rpx;
                margin-top: 80rpx;
                pointer-events: none;
 
                .btn-font {
                    font-size: 30rpx;
                    font-weight: 500;
                    color: #FFFFFF;
                }
            }
 
            .colorfulbtn {
                background: #FD002F;
                pointer-events: auto;
            }
        }
    }
</style>