zhaojs
2023-06-25 e5f21e8972f2870d5fa5dbf9e947b285fc4660fb
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<template>
    <view class="modifyPass-container wrapperLayer">
        <titleBar titleText='' :pageForm='"modifyPass"'></titleBar>
        <view class="pageInfoContent-container colCen borderBox">
            <view class="titleText">
                修改密码
            </view>
            
            <view class="input-container colCen">
                <view class="outSidebox rowCen" :class="selectedInput=='phone'?'outSidebox-active':''">
                    <input 
                        type="number" 
                        data-type='phone'
                        @focus="changeType"
                        @blur="cleanActive"
                        v-model="userInfo.mobile" 
                        placeholder="请输入手机号" 
                        disabled
                        placeholder-class="input-placeHolder"/>
                </view>
            </view>
            
            <view class="input-container colCen">
                <view class="outSidebox rowCenBet" data-type='pass' :class="selectedInput=='code'?'outSidebox-active':''">
                    <input 
                        @focus="changeType"
                        @blur="cleanActive"
                        data-type='code'
                        type="number" 
                        v-model="code" 
                        placeholder="请输入验证码" 
                        placeholder-class="input-placeHolder"/>
                    <view class="getcodebox" :class="canGetCode?'colorTxt':''" @click="getCode()">
                        {{canGetCode?'获取验证码':second+'s后重新获取'}}
                    </view>
                </view>
            </view>
            
            <view class="input-container colCen">
                <view class="outSidebox rowCenBet" data-type='pass' :class="selectedInput=='pass'?'outSidebox-active':''">
                    <input 
                        @focus="changeType"
                        @blur="cleanActive"
                        data-type='pass'
                        :password="showPass"
                        type="text" 
                        v-model="pass" 
                        placeholder="请输入新密码" 
                        placeholder-class="input-placeHolder"/>
                    <view class="hidepass iconfont" @click="showPassfnc()">
                        {{showPass?'&#xe610;':'&#xe60f;'}}
                    </view>
                </view>
            </view>
            
            <view class="input-container colCen">
                <view class="outSidebox rowCenBet" data-type='pass' :class="selectedInput=='newpass'?'outSidebox-active':''">
                    <input 
                        @focus="changeType"
                        @blur="cleanActive"
                        data-type='newpass'
                        password
                        type="text" 
                        v-model="newpass" 
                        placeholder="请确认新密码" 
                        placeholder-class="input-placeHolder"/>
                </view>
            </view>
            
            <view class="txtTips">
                密码由8-16个字符组成。必须包含字母和数字两种类型。
            </view>
            
            <view class="login-btn rowCenCen" :class="true?'colorfulbtn':''" @click="modify()">
                <view class="btn-font">
                    确认修改
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import titleBar from '../../components/backTitlebar.vue'
    import MD5 from '../../utils/md5.js'
    import config from '../../utils/config.js'
    import utils from '../../utils/utils.js'
    export default {
        components: {
            titleBar
        },
        data(){
            return{
                user:'',
                pass:'',
                phone:'',
                code:'',
                selectedInput:'',
                newpass:'',
                
                cleanfocus:true,
                showPass:true,
                second:60,
                canGetCode:true,
                prevent:true
            }
        },
        onLoad() {
            try {
                const value = uni.getStorageSync('userInfo');
                if (value.id) {
                    this.user = value
                } else {
                    this.user = ''
                }
            } catch (e) {
                this.user = ''
            }
            
            console.log(this.user);
        },
        methods:{
            getCode(){
                var that = this;
                if (this.prevent && this.canGetCode) {
                    this.prevent = false
                    var timerChuo = new Date().getTime()
                    this.$u.api.sendSms({
                        mobile: this.userInfo.mobile,
                        event: 'resetpwd'
                    }).then(e => {
                        if(e.code != 0) return that.$alert(e.msg)
                        that.prevent = true
                        that.canGetCode = false
                        var timer = setInterval(()=>{
                            that.second --
                            if(that.second<1){
                                that.second = 60
                                that.canGetCode = true
                                clearInterval(timer)
                            }
                        },1000)
                        
                    }).catch(function (err) {
                        that.canGetCode = true
                        that.prevent = true
                    })
                } else {
                    uni.showToast({
                        title: '您点的太快了~',
                        icon: 'none',
                        position: 'bottom',
                        duration: 3000
                    });
                }
            },
            
            showPassfnc(){
                this.showPass = !this.showPass
            },
            
            
            changeType(e){
                this.selectedInput = e.target.dataset.type
            },
            cleanActive(){
                this.selectedInput = ''
            },
            
            changeWay(){
                this.ifPasslogin = !this.ifPasslogin
            },
            
            modify() {
                var that = this;
                var str = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/;
                if (str.test(this.pass)) {
                    if(this.pass == this.newpass){
                        this.$u.api.changePwd({
                            type: 'mobile',
                            mobile:this.userInfo.mobile,
                            newpassword:this.pass,
                            captcha:this.code
                        }).then(e => {
                            if(e.code == 1)return that.$alert(e.msg);
                            that.$alert(e.msg);
                            setTimeout(function(){
                                uni.navigateBack({
                                    delta:1
                                })
                            },1000)
                            
                        }).catch(function (err) {
                        })
                        
                    }else{
                        uni.showToast({
                            title: '两次密码输入不一致!',
                            icon: 'none',
                            position: 'bottom',
                            duration: 3000
                        });
                    }
                } else {
                    uni.showToast({
                        title: '密码不符合要求,请输入8~16位的数字与字母的组合',
                        icon: 'none',
                        position: 'bottom',
                        duration: 3000
                    });
                }
            }
        }
    }
</script>
 
<style lang="scss">
    .modifyPass-container{
        width: 100%;
        min-height: 100vh;
        background-color: #FFFFFF;
        .pageInfoContent-container{
            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;
                }
            }
            .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;
                }
            }
            .txtTips {
                font-size: 26rpx;
                font-weight: 400;
                color: #999999;
                line-height: 38rpx;
            }
            .colorfulbtn{
                background: #FD002F;
                pointer-events: auto;
            }
        }
    }
</style>