| 123456789101112131415161718192021222324252627282930313233343536 |
- const mapEnvVersion = {
- /**
- * 开发版
- */
- develop: 'http://192.168.1.166:8080', // 张
- // develop: 'http://192.168.1.101:8080',
- // develop: 'http://192.168.0.157:8080',
- // develop: 'http://192.168.1.253:8080',
- // develop: 'http://192.168.1.89:8080', // 田
- // develop: 'http://47.109.84.152:8081',
- // develop: 'https://smqjh.api.zswlgz.com',
- /**
- * 体验版
- */
- // trial: "http://192.168.1.166:8080/jeecg-boot",
- // trial: 'http://192.168.0.157:8080',
- // trial: 'http://47.109.84.152:8081',
- // trial: 'http://192.168.1.166:8080',
- trial: 'https://smqjh.api.zswlgz.com',
- /**
- * 正式版
- */
- release: 'https://smqjh.api.zswlgz.com',
- }
- /**
- * Base URL请求基本url
- */
- export const BASE_URL
- = mapEnvVersion[uni.getAccountInfoSync().miniProgram.envVersion]
- /**
- * 静态资源服务
- */
- export const StaticUrl = 'https://zswl-smqjh.oss-cn-chengdu.aliyuncs.com/static/static'
|