UNPKG

@tslsmart/magic-applet

Version:

特斯联移动端统一接口,抹平h5和wgt的差异

10 lines (9 loc) 271 B
import { PARAMS_LOCAL_KEY } from '../constant'; // 获取完整的启动参数 export const getParams = () => { return uni.getStorageSync(PARAMS_LOCAL_KEY); }; // 获取指定key的启动参数 export const getParamsByKey = (key) => { return getParams()[key]; };