From f744202ac799c443e9019e8e7777fcb09d670d55 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 13 九月 2024 11:11:17 +0800 Subject: [PATCH] 2024-09-13 --- src/tabviews/custom/index.jsx | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/tabviews/custom/index.jsx b/src/tabviews/custom/index.jsx index 88009a6..333a938 100644 --- a/src/tabviews/custom/index.jsx +++ b/src/tabviews/custom/index.jsx @@ -1383,7 +1383,11 @@ this.setState({loading: true, loadingview: false}) if (config.$cache && config.$time) { - Api.getLCacheConfig(params[0].uuid || params[0].id, config.$time, BID).then(res => { + let uuid = params[0].uuid || '' + if (params[0].id) { + uuid = window.GLOB.CacheData.get('first_' + params[0].id) || '' + } + Api.getLCacheConfig(uuid, config.$time, BID).then(res => { if (!res.valid) { this.getMainData(param, params, config.MenuID) } else { -- Gitblit v1.8.0