From 62e82ea9ee6a73cf7cdcfe1ab1a7b49a23f571e3 Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期五, 15 十月 2021 17:58:28 +0800 Subject: [PATCH] 录像下载修复 --- web_src/src/components/dialog/changePassword.vue | 33 +++++++++++++++++++++++++++------ 1 files changed, 27 insertions(+), 6 deletions(-) diff --git a/web_src/src/components/dialog/changePassword.vue b/web_src/src/components/dialog/changePassword.vue index 5842df0..a95736f 100644 --- a/web_src/src/components/dialog/changePassword.vue +++ b/web_src/src/components/dialog/changePassword.vue @@ -11,6 +11,9 @@ > <div id="shared" style="margin-right: 20px;"> <el-form ref="passwordForm" :rules="rules" status-icon label-width="80px"> + <el-form-item label="鏃у瘑鐮�" prop="oldPassword" > + <el-input v-model="oldPassword" autocomplete="off"></el-input> + </el-form-item> <el-form-item label="鏂板瘑鐮�" prop="newPassword" > <el-input v-model="newPassword" autocomplete="off"></el-input> </el-form-item> @@ -31,15 +34,23 @@ </template> <script> +import crypto from 'crypto' export default { name: "changePassword", props: {}, computed: {}, created() {}, data() { - let validatePass = (rule, value, callback) => { + let validatePass0 = (rule, value, callback) => { if (value === '') { - callback(new Error('璇疯緭鍏ュ瘑鐮�')); + callback(new Error('璇疯緭鍏ユ棫瀵嗙爜')); + } else { + callback(); + } + }; + let validatePass1 = (rule, value, callback) => { + if (value === '') { + callback(new Error('璇疯緭鍏ユ柊瀵嗙爜')); } else { if (this.confirmPassword !== '') { this.$refs.passwordForm.validateField('confirmPassword'); @@ -57,12 +68,14 @@ } }; return { + oldPassword: null, newPassword: null, confirmPassword: null, showDialog: false, isLoging: false, rules: { - newPassword: [{ required: true, validator: validatePass, trigger: "blur" }], + oldPassword: [{ required: true, validator: validatePass0, trigger: "blur" }], + newPassword: [{ required: true, validator: validatePass1, trigger: "blur" }], confirmPassword: [{ required: true, validator: validatePass2, trigger: "blur" }], }, }; @@ -76,13 +89,14 @@ method: 'post', url:"/api/user/changePassword", params: { + oldPassword: crypto.createHash('md5').update(this.oldPassword, "utf8").digest('hex'), password: this.newPassword } }).then((res)=> { if (res.data === "success"){ this.$message({ showClose: true, - message: '淇敼鎴愬姛锛岃閲嶆柊鐧婚檰', + message: '淇敼鎴愬姛锛岃閲嶆柊鐧诲綍', type: 'success' }); this.showDialog = false; @@ -92,6 +106,12 @@ this.$router.push('/login'); this.sseSource.close(); },800) + }else { + this.$message({ + showClose: true, + message: '淇敼瀵嗙爜澶辫触锛屾槸鍚﹀凡鐧诲綍锛堟帴鍙i壌鏉冨叧闂棤娉曚慨鏀瑰瘑鐮侊級', + type: 'error' + }); } }).catch((error)=> { console.error(error) @@ -99,8 +119,9 @@ }, close: function () { this.showDialog = false; - this.newPassword= null; - this.confirmPassword=null; + this.oldPassword = null; + this.newPassword = null; + this.confirmPassword = null; }, }, }; -- Gitblit v1.8.0