1234567891011121314151617181920 |
- const config = {
- /**
- * appId
- */
- // appId: 'wxd935838591c00e16', // 众炬
- // appId: 'wx21d155e8a449d9b1', // 嘉讯茂商城
- // appId: 'wxb80d6a6523463b70', // 格匠零售
- appId: 'wx0a8aba0d853c7e87', // 羊城人力商城
-
- /**
- * 请求地址
- */
- // base_url: 'https://gmintertest.zfire.top', // 测试环境
- base_url: 'https://gjmall.gd-jxm.com', // 正式环境
- }
- export default config;
- export const appId = config.appId;
- export const base_url = config.base_url;
|