From 22c9b94be213ff93064d7c463d82344023ffab1c Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 08 八月 2023 10:35:29 +0800 Subject: [PATCH] Merge branch 'master' into positec --- src/tabviews/custom/components/chart/antv-scatter/index.jsx | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/tabviews/custom/components/chart/antv-scatter/index.jsx b/src/tabviews/custom/components/chart/antv-scatter/index.jsx index 200143e..3fb8d8b 100644 --- a/src/tabviews/custom/components/chart/antv-scatter/index.jsx +++ b/src/tabviews/custom/components/chart/antv-scatter/index.jsx @@ -143,18 +143,18 @@ 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.data = res + this.data = res.data this.handleData() - this.setState({empty: res.length === 0}) + this.setState({empty: res.data.length === 0}) }) } else { this.handleData() @@ -162,12 +162,12 @@ } else { if (!this.loaded) { Api.getLCacheConfig(config.uuid, 0).then(res => { - if (!res || this.loaded) return + if (!res.data || this.loaded) return - this.data = res + this.data = res.data this.handleData() - this.setState({empty: res.length === 0}) + this.setState({empty: res.data.length === 0}) }) } -- Gitblit v1.8.0