| 1234567891011121314151617181920212223242526 |
- // [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
- };
|