From 5e1d4d5155c57c43739d61914e2d29a64f9bb683 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期日, 27 八月 2023 17:40:38 +0800
Subject: [PATCH] Merge branch 'develop'

---
 src/tabviews/custom/components/calendar/index.jsx |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/tabviews/custom/components/calendar/index.jsx b/src/tabviews/custom/components/calendar/index.jsx
index 051b672..764dd9b 100644
--- a/src/tabviews/custom/components/calendar/index.jsx
+++ b/src/tabviews/custom/components/calendar/index.jsx
@@ -100,11 +100,11 @@
   }
 
   initExec = () => {
-    const { config } = this.state
+    const { config, BID } = this.state
 
     if (config.$cache) {
       if (config.$time) {
-        Api.getLCacheConfig(config.uuid, config.$time).then(res => {
+        Api.getLCacheConfig(config.uuid, config.$time, BID).then(res => {
           if (!res.valid && config.setting.onload === 'true') {
             setTimeout(() => {
               this.loadData('init')
@@ -128,7 +128,7 @@
           this.setState({data: _data})
         })
       } else {
-        Api.getLCacheConfig(config.uuid, 0).then(res => {
+        Api.getLCacheConfig(config.uuid, 0, BID).then(res => {
           if (!res.data || this.loaded) return
   
           let _data = []
@@ -243,7 +243,7 @@
     if (result.status) {
       this.loaded = true
       if (config.$cache && type === 'init') {
-        Api.writeCacheConfig(config.uuid, result.data || [])
+        Api.writeCacheConfig(config.uuid, result.data || [], BID)
       }
 
       let data = []

--
Gitblit v1.8.0