z-paging-config.js 401 Bytes
// [z-paging]处理main.js中的配置信息工具

let config = null;
let getedStorage = false;
const storageKey = 'Z-PAGING-CONFIG-STORAGE-KEY'

function setConfig(value) {
	uni.setStorageSync(storageKey, value);
}

function getConfig() {
	if (getedStorage) return config;
	config = uni.getStorageSync(storageKey);
	getedStorage = true;
	return config;
}

export default {
	setConfig,
	getConfig
};