| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * 应用全局配置
- *
- * 环境自动检测(基于微信小程序官方 API):
- * uni.getAccountInfoSync().miniProgram.envVersion
- * 'develop' → 开发版(工具内预览)
- * 'trial' → 体验版(上传到体验版)
- * 'release' → 正式版(线上发布)
- *
- * 无需手动修改任何变量,发布到对应环境自动生效。
- */
- let API_BASE_URL = 'http://cfc.iwintrue.com'
- try {
- const accountInfo = uni.getAccountInfoSync()
- const env = accountInfo && accountInfo.miniProgram && accountInfo.miniProgram.envVersion
- if (env) {
- switch (env) {
- case 'develop':
- //API_BASE_URL = 'http://cfc.iwintrue.com'
- //API_BASE_URL = 'http://192.168.1.57:9082'
- API_BASE_URL = 'https://cfc.etotem.com.cn'
- break
- case 'trial':
- API_BASE_URL = 'https://cfc.etotem.com.cn'
- break
- case 'release':
- API_BASE_URL = 'https://cfc.etotem.com.cn'
- break
- }
- }
- } catch (e) {
- // 非小程序环境(H5/dev),使用默认地址
- }
- export default {
- API_BASE_URL,
- api(path) {
- return API_BASE_URL + path
- }
- }
|