From 474c68f0fea10cc62977c67d186732b3346cdd53 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 17 一月 2023 18:04:45 +0800 Subject: [PATCH] 2023-01-17 --- src/tabviews/custom/components/carousel/data-card/index.jsx | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/components/carousel/data-card/index.jsx b/src/tabviews/custom/components/carousel/data-card/index.jsx index 8829c61..90e9116 100644 --- a/src/tabviews/custom/components/carousel/data-card/index.jsx +++ b/src/tabviews/custom/components/carousel/data-card/index.jsx @@ -32,6 +32,8 @@ visible: false } + loaded = false + UNSAFE_componentWillMount () { const { data, initdata } = this.props let _config = fromJS(this.props.config).toJS() @@ -62,6 +64,7 @@ } if (_data) { + this.loaded = true _data = _data.map((item, index) => { item.key = index item.$$uuid = item[_config.setting.primaryKey] || '' @@ -129,6 +132,21 @@ this.loadData('timer') }) } + + if (config.$cache && !this.loaded) { + Api.getLCacheConfig(config.uuid).then(res => { + if (!res || this.loaded) return + + let _data = res.map((item, index) => { + item.key = index + item.$$uuid = item[config.setting.primaryKey] || '' + item.$Index = index + 1 + '' + return item + }) + + this.setState({data: _data}) + }) + } } shouldComponentUpdate (nextProps, nextState) { @@ -152,6 +170,8 @@ item.$Index = index + 1 return item }) + + this.loaded = true this.setState({sync: false, data: _data}, () => { this.openModal() @@ -256,6 +276,8 @@ data: [], loading: false }) + + this.loaded = true return } @@ -276,6 +298,11 @@ let result = await Api.genericInterface(param) if (result.status) { + this.loaded = true + if (config.$cache) { + Api.writeCacheConfig(config.uuid, result.data || '') + } + this.setState({ data: result.data.map((item, index) => { item.key = index -- Gitblit v1.8.0