修复配置缓存数据存储错误问题

This commit is contained in:
2024-12-30 21:46:29 +08:00
parent f01510c172
commit 34a175e3e6

View File

@@ -87,7 +87,7 @@ class CACHE_config extends CACHE {
}
set(key, val) {
this[key] = val
uni.setStorageSync(key, this)
uni.setStorageSync(key, val)
uni.setStorageSync(this._name, this)
}
clear() {