UNPKG

bmfe-mina-template

Version:

BM 小程序模板

27 lines (21 loc) 424 B
const env = 'wechat'; const environment = { wechat: { path: 'https://test.com' } } const _env = environment[env]; export const path = _env['path']; export const appid = _env['appid']; export const secret = _env['secret']; var config = { path, appid, secret } export const setConfig = (key, value) => { config[key] = value; } export const getConfig = (key) => { return config[key]; }