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/UserManager.vue | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/web_src/src/components/UserManager.vue b/web_src/src/components/UserManager.vue
old mode 100644
new mode 100755
index 1048f53..c0fa695
--- a/web_src/src/components/UserManager.vue
+++ b/web_src/src/components/UserManager.vue
@@ -105,8 +105,10 @@
count: that.count
}
}).then(function (res) {
- that.total = res.data.total;
- that.userList = res.data.list;
+ if (res.data.code === 0) {
+ that.total = res.data.data.total;
+ that.userList = res.data.data.list;
+ }
that.getUserListLoading = false;
}).catch(function (error) {
that.getUserListLoading = false;
--
Gitblit v1.8.0