From d38ccc257c252e031363aef6c8fa19aff1a65692 Mon Sep 17 00:00:00 2001
From: chenzhangyue <chenzhangyue01@weidian.com>
Date: 星期四, 31 八月 2023 17:36:57 +0800
Subject: [PATCH] 页面表单更新修复,这里update应该为查出来的DO,不是前端的DO,采用更安全的redis策略,更新DB删除缓存,查询设备的时候补充缓存
---
web_src/src/components/dialog/changePassword.vue | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/web_src/src/components/dialog/changePassword.vue b/web_src/src/components/dialog/changePassword.vue
old mode 100644
new mode 100755
index 77e1d2a..5ab2d2f
--- a/web_src/src/components/dialog/changePassword.vue
+++ b/web_src/src/components/dialog/changePassword.vue
@@ -35,6 +35,7 @@
<script>
import crypto from 'crypto'
+import userService from "../service/UserService";
export default {
name: "changePassword",
props: {},
@@ -105,7 +106,7 @@
this.showDialog = false;
setTimeout(()=>{
// 鍒犻櫎cookie锛屽洖鍒扮櫥褰曢〉闈�
- this.$cookies.remove("session");
+ userService.clearUserInfo();
this.$router.push('/login');
this.sseSource.close();
},800)
--
Gitblit v1.8.0