|
@@ -1,11 +1,18 @@
|
|
|
+const base_url = {
|
|
|
+ develop:'http://192.168.100.128:9527',//开发版
|
|
|
+ trial: 'https://zybooks.tech/prod-api',//体验版
|
|
|
+ release: 'https://goldshulin.com/prod-api',//正式版
|
|
|
+}
|
|
|
+
|
|
|
+const env = uni.getAccountInfoSync().miniProgram.envVersion
|
|
|
// 应用全局配置
|
|
|
const config = {
|
|
|
// baseUrl: 'https://vue.ruoyi.vip/prod-api',
|
|
|
//cloud后台网关地址
|
|
|
// baseUrl: 'http://192.168.100.139:9527', //嵘哥
|
|
|
- // baseUrl: 'http://192.168.100.128:9527',//龙哥
|
|
|
+ baseUrl: base_url[env],//龙哥
|
|
|
// baseUrl: 'http://192.168.100.122:9527',
|
|
|
- baseUrl: 'https://goldshulin.com/prod-api',
|
|
|
+ // baseUrl: 'https://goldshulin.com/prod-api',
|
|
|
mapKey: 'KFEBZ-P2GKZ-A5PX4-7Q6Y7-KXOBF-XCB4C',
|
|
|
appName: '金邻助家',
|
|
|
// 应用信息
|