From 3559320840d174a2360b2efab70465698bb9a92d Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 08 八月 2023 10:34:58 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/custom/components/tree/antd-tree/index.jsx | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tabviews/custom/components/tree/antd-tree/index.jsx b/src/tabviews/custom/components/tree/antd-tree/index.jsx index 3046ea7..a4fd24f 100644 --- a/src/tabviews/custom/components/tree/antd-tree/index.jsx +++ b/src/tabviews/custom/components/tree/antd-tree/index.jsx @@ -136,15 +136,15 @@ if (config.$time) { if (!this.loaded) { Api.getLCacheConfig(config.uuid, config.$time).then(res => { - if (!res && config.setting.onload === 'true') { + if (!res.valid && config.setting.onload === 'true') { setTimeout(() => { this.loadData() }, config.setting.delay || 0) } - if (!res || this.loaded) return + if (!res.data || this.loaded) return - this.setState({data: res}, () => { + this.setState({data: res.data}, () => { this.handleData() }) }) @@ -154,9 +154,9 @@ } else { if (!this.loaded) { Api.getLCacheConfig(config.uuid, 0).then(res => { - if (!res || this.loaded) return + if (!res.data || this.loaded) return - this.setState({data: res}, () => { + this.setState({data: res.data}, () => { this.handleData() }) }) -- Gitblit v1.8.0