Files
location_point/components/z-paging/js/z-paging-config.js
2026-02-23 16:31:39 +08:00

27 lines
452 B
JavaScript

// [z-paging]处理main.js中的配置信息工具
let config = null;
let getedStorage = false;
const storageKey = 'Z-PAGING-CONFIG-STORAGE-KEY'
function setConfig(value) {
try {
uni.setStorageSync(storageKey, value);
} catch (e) {}
}
function getConfig() {
try {
if (getedStorage) return config;
config = uni.getStorageSync(storageKey);
getedStorage = true;
} catch (e) {
return null;
}
}
export default {
setConfig,
getConfig
};