From eaf4b616aba11693721260f87a76c6352d9a15ec Mon Sep 17 00:00:00 2001 From: anthonywj Date: Tue, 16 Apr 2024 17:02:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E5=AF=86=E7=A0=81=E9=AA=8C?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/auth/authAdmin.js | 9 +++++++ src/views/myLogin.vue | 55 ++++++++++++++++++++++++++++++--------- 2 files changed, 52 insertions(+), 12 deletions(-) diff --git a/src/api/auth/authAdmin.js b/src/api/auth/authAdmin.js index dbd6cc7f..e911b99d 100644 --- a/src/api/auth/authAdmin.js +++ b/src/api/auth/authAdmin.js @@ -74,6 +74,15 @@ export function modifyPasswd(data) { }); } +export function forceModifyPasswd(data) { + return axios({ + url: "/admin/auth/admin/force/updateUser", + method: "post", + data: data + }); +} + + export function filterByUser(query) { return axios({ url: "/admin/auth/admin/selectUser", diff --git a/src/views/myLogin.vue b/src/views/myLogin.vue index 28419d3b..558ee32d 100644 --- a/src/views/myLogin.vue +++ b/src/views/myLogin.vue @@ -98,7 +98,6 @@ - - - + + @@ -142,6 +141,7 @@ import axios from "axios"; import Cookies from "js-cookie"; import {decrypt, encrypt} from "@/utils/jsencrypt"; import {getCodeImg, getTitleConfig} from "@/api/login"; +import {forceModifyPasswd, modifyPasswd} from "@/api/auth/authAdmin"; export default { data() { @@ -187,7 +187,7 @@ export default { passwordFormData: { oldPassword: "", newPassword: "", - check_new_password: "", + confirmPassword: "", }, }; }, @@ -337,7 +337,7 @@ export default { this.passwordFormData = { oldPassword: "", newPassword: "", - check_new_password: "", + confirmPassword: "", }; }).catch(() => { this.$router @@ -352,8 +352,6 @@ export default { .catch((res) => { }); } - - }) .catch((res) => { this.loading = false; @@ -377,10 +375,41 @@ export default { this.subTitle = res.data.subTitle; }); }, - }, + passwdSubmit() { + if (this.passwordFormData.newPassword != this.passwordFormData.confirmPassword) { + this.$message.error("新密码与确认密码不一致!!!!"); + return + } + if (this.passwordFormData.passWord == this.passwordFormData.newPassword) { + this.$message.error("旧密码与新密码不能相同!!!!"); + return + } + this.loading = true; + forceModifyPasswd(this.passwordFormData).then((response) => { + if (response.code === 20000) { + this.loading = false; + this.$confirm('密码重置成功,请点击确定重新登录', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + this.$store.dispatch('LogOut').then(() => { + location.href = process.env.VUE_APP_CONTEXT_PATH; + }) + }).catch(() => { + }); + } else { + this.$message.error(response.message); + } + }); + }, + } + + , components: { Verify, - }, + } + , created() { // 将参数拷贝进查询对象 let query = this.$route.query; @@ -394,8 +423,10 @@ export default { }); this.getCookie(); - }, -}; + } + , +} +;