Crunchy
2025-01-13 01d423865ae5eddf91f35c8526f5683c3b430870
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<!--
  -    Copyright (c) 2018-2025, ztt All rights reserved.
  -
  - Redistribution and use in source and binary forms, with or without
  - modification, are permitted provided that the following conditions are met:
  -
  - Redistributions of source code must retain the above copyright notice,
  - this list of conditions and the following disclaimer.
  - Redistributions in binary form must reproduce the above copyright
  - notice, this list of conditions and the following disclaimer in the
  - documentation and/or other materials provided with the distribution.
  - Neither the name of the pig4cloud.com developer nor the names of its
  - contributors may be used to endorse or promote products derived from
  - this software without specific prior written permission.
  - Author: ztt
  -->
 
<template>
    <div class="app-container calendar-list-container">
        <basic-container>
            <template>
                <el-tabs @tab-click="switchTab">
                    <el-tab-pane label="信息管理" name="userManager" />
                    <el-tab-pane label="密码管理" name="passwordManager" />
                </el-tabs>
            </template>
            <el-row>
                <el-col :span="12">
                    <div class="grid-content bg-purple">
                        <el-form v-if="switchStatus === 'userManager'" ref="ruleForm2" :model="ruleForm2" :rules="rules2" label-width="100px" class="demo-ruleForm">
                            <el-form-item label="用户名" prop="username">
                                <el-input v-model="ruleForm2.username" type="text" disabled />
                            </el-form-item>
                            <el-form-item label="手机号" prop="phone">
                                <el-input v-model="ruleForm2.phone" placeholder="验证码登录使用" />
                            </el-form-item>
                            <el-form-item label="头像">
                                <el-upload :headers="headers" :show-file-list="false" :on-success="handleAvatarSuccess" class="avatar-uploader" action="/admin/sys-file/upload">
                                    <img v-if="ruleForm2.avatar" id="avatar" :src="avatarUrl" class="avatar" />
                                    <i v-else class="el-icon-plus avatar-uploader-icon" />
                                </el-upload>
                            </el-form-item>
                            <el-form-item label="社交登录" prop="social">
                                <a href="#" style="color: blue" @click="handleClick('wechat')">绑定微信</a>| <a href="#" style="color: blue" @click="handleClick('gitee')">绑定码云</a> |
                                <a href="#" style="color: blue" @click="handleClick('osc')">开源中国</a>
                            </el-form-item>
                            <el-form-item>
                                <el-button type="primary" @click="submitForm('ruleForm2')">提交 </el-button>
                                <el-button @click="resetForm('ruleForm2')">重置</el-button>
                            </el-form-item>
                        </el-form>
                        <el-form v-if="switchStatus === 'passwordManager'" ref="ruleForm2" :model="ruleForm2" :rules="rules2" label-width="100px" class="demo-ruleForm">
                            <el-form-item label="原密码" prop="password">
                                <el-input v-model="ruleForm2.password" type="password" auto-complete="off" />
                            </el-form-item>
                            <el-form-item label="密码" prop="newpassword1">
                                <div class="password-input-container">
                                    <el-input v-model="ruleForm2.newpassword1" type="password" @input="checkPasswordStrength" show-password auto-complete="off" />
                                    <div v-if="ruleForm2.newpassword1" class="password-strength-indicator">
                                        密码强度: <span :class="passwordLevelClass">{{ passwordLevel }}</span>
                                    </div>
                                </div>
                            </el-form-item>
                            <el-form-item label="确认密码" prop="newpassword2">
                                <el-input v-model="ruleForm2.newpassword2" type="password" auto-complete="off" />
                            </el-form-item>
                            <el-form-item>
                                <el-button type="primary" @click="submitForm('ruleForm2')">提交 </el-button>
                                <el-button @click="resetForm('ruleForm2')">重置</el-button>
                            </el-form-item>
                        </el-form>
                    </div>
                </el-col>
            </el-row>
        </basic-container>
    </div>
</template>
 
<script>
import { handleImg, openWindow } from '@/util/util'
import { mapState } from 'vuex'
import store from '@/store'
import { getStore, setStore } from '@/util/store'
import { editInfo } from '@/api/admin/user'
 
export default {
    data() {
        // 密码强度校验
        const validatePasswordStrength = (rule, value, callback) => {
            let strength = 0
 
            if (value.length >= 8) strength++
            if (/\d/.test(value)) strength++
            if (/[a-z]/.test(value)) strength++
            if (/[A-Z]/.test(value)) strength++
            if (/[!@#$%^&*]/.test(value)) strength++
 
            if (strength < 4) {
                callback(new Error('密码强度不够,请确保密码包含:大小写字母、数字和特殊字符,且长度不少于8位'))
            } else {
                callback()
            }
        }
 
        // 确认密码校验
        var validatePass = (rule, value, callback) => {
            if (this.ruleForm2.password !== '') {
                if (value !== this.ruleForm2.newpassword1) {
                    callback(new Error('两次输入密码不一致!'))
                } else {
                    callback()
                }
            } else {
                callback()
            }
        }
 
        return {
            switchStatus: 'userManager',
            avatarUrl: '',
            show: false,
            headers: {
                Authorization: 'Bearer ' + store.getters.access_token
            },
            ruleForm2: {
                username: '',
                password: '',
                newpassword1: '',
                newpassword2: '',
                avatar: '',
                phone: ''
            },
            passwordLevel: '', // 密码强度级别
            passwordLevelClass: '', // 密码强度样式类
            rules2: {
                password: [
                    {
                        required: true,
                        min: 8,
                        message: '原密码不能为空且不少于8位',
                        trigger: 'change'
                    }
                ],
                newpassword1: [{ required: true, message: '请输入新密码', trigger: 'blur' }, { validator: validatePasswordStrength, trigger: 'blur' }],
                newpassword2: [
                    {
                        required: true,
                        validator: validatePass,
                        trigger: 'blur'
                    }
                ]
            }
        }
    },
    created() {
        this.resetForm()
    },
    computed: {
        ...mapState({
            userInfo: (state) => state.user.userInfo
        })
    },
    methods: {
        switchTab(tab) {
            if (tab.name === 'userManager') {
                handleImg(this.ruleForm2.avatar, 'avatar')
            }
            this.switchStatus = tab.name
        },
        submitForm(formName) {
            this.$refs[formName].validate((valid) => {
                if (!valid) {
                    return false
                }
                editInfo(this.ruleForm2).then((response) => {
                    this.handleLocalData(this.ruleForm2)
                    this.$notify.success('修改成功')
                    // 修改密码之后强制重新登录
                    if (this.switchStatus === 'passwordManager') {
                        this.$store.dispatch('LogOut').then(() => {
                            location.reload() // 为了重新实例化vue-router对象 避免bug
                        })
                    }
                })
            })
        },
        resetForm() {
            this.ruleForm2.password = undefined
            this.ruleForm2.newpassword1 = undefined
            this.ruleForm2.newpassword2 = undefined
            this.ruleForm2.username = this.userInfo.username
            this.ruleForm2.phone = this.userInfo.phone
            this.ruleForm2.avatar = this.userInfo.avatar
            handleImg(this.userInfo.avatar, 'avatar')
            //判断是否选择了租户ID
            const TENANT_ID = getStore({ name: 'tenantId' })
            if (TENANT_ID) {
                this.headers['TENANT-ID'] = TENANT_ID // 租户ID
            }
        },
        handleClick(thirdpart) {
            let appid, client_id, redirect_uri, url
            redirect_uri = encodeURIComponent(window.location.origin + '/#/authredirect')
            if (thirdpart === 'wechat') {
                appid = 'wxd1678d3f83b1d83a'
                url = 'https://open.weixin.qq.com/connect/qrconnect?appid=' + appid + '&redirect_uri=' + redirect_uri + '&state=WX-BIND&response_type=code&scope=snsapi_login#wechat_redirect'
            } else if (thirdpart === 'tencent') {
                client_id = '101322838'
                url = 'https://graph.qq.com/oauth2.0/authorize?response_type=code&state=QQ-BIND&client_id=' + client_id + '&redirect_uri=' + redirect_uri
            } else if (thirdpart === 'gitee') {
                client_id = '235ce26bbc59565b82c989aa3a407ce844cf59a7c5e0f9caa9bb3bf32cee5952'
                url = 'https://gitee.com/oauth/authorize?response_type=code&state=GITEE-BIND&client_id=' + client_id + '&redirect_uri=' + redirect_uri
            } else if (thirdpart === 'osc') {
                client_id = 'neIIqlwGsjsfsA6uxNqD'
                url = 'https://www.oschina.net/action/oauth2/authorize?response_type=code&client_id=' + client_id + '&state=OSC-BIND&redirect_uri=' + redirect_uri
            }
            openWindow(url, thirdpart, 540, 540)
        },
        handleAvatarSuccess(res, file) {
            this.avatarUrl = URL.createObjectURL(file.raw)
            this.ruleForm2.avatar = res.data.url
        },
        // 处理本地数据,避免刷新不同步
        handleLocalData(form) {
            let userInfo = getStore({ name: 'userInfo' })
 
            if (userInfo) {
                userInfo.avatar = form.avatar
                userInfo.phone = form.phone
                setStore({
                    name: 'userInfo',
                    content: userInfo,
                    type: 'session'
                })
            }
        },
        // 检查密码强度
        checkPasswordStrength(password) {
            let strength = 0
 
            // 检查长度
            if (password.length >= 8) strength++
 
            // 检查是否包含数字
            if (/\d/.test(password)) strength++
 
            // 检查是否包含小写字母
            if (/[a-z]/.test(password)) strength++
 
            // 检查是否包含大写字母
            if (/[A-Z]/.test(password)) strength++
 
            // 检查是否包含特殊字符
            if (/[!@#$%^&*]/.test(password)) strength++
 
            switch (strength) {
                case 0:
                case 1:
                    this.passwordLevel = '弱'
                    this.passwordLevelClass = 'password-weak'
                    break
                case 2:
                case 3:
                    this.passwordLevel = '中'
                    this.passwordLevelClass = 'password-medium'
                    break
                case 4:
                case 5:
                    this.passwordLevel = '强'
                    this.passwordLevelClass = 'password-strong'
                    break
            }
        }
    }
}
</script>
<style>
.avatar-uploader .el-upload {
    border: 1px dashed #d9d9d9;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
 
.avatar-uploader .el-upload:hover {
    border-color: #409eff;
}
 
.avatar-uploader-icon {
    font-size: 28px !important;
    color: #8c939d !important;
    width: 178px !important;
    height: 178px !important;
    line-height: 178px !important;
    text-align: center !important;
}
 
.avatar {
    width: 178px;
    height: 178px;
    display: block;
}
 
.password-input-container {
    width: 100%;
    .el-input {
        width: 100%;
    }
}
 
.password-strength-indicator {
    margin-top: 5px;
    font-size: 12px;
    color: #606266;
}
 
.password-weak {
    color: #f56c6c;
}
 
.password-medium {
    color: #e6a23c;
}
 
.password-strong {
    color: #67c23a;
}
</style>