config.js
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const app_version = '1.0.0'
const private_key = 'b43890b0a296ff3c7b8c260ca763980b'
const appid = 'wxc677c88385762287'
export default {
development: {
domains: {
// production
api: 'http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway',
yohoApi: 'http://api-test3.dev.yohocorp.com',
yohoLogin: 'http://java-yoho-wechat.test3.ingress.dev.yohocorp.com'
},
apiParams: {
client_type: 'miniapp',
private_key: private_key,
app_version: app_version,
// miniapp_version: '0.0.1',
source_type: 'wechat',
user_source: 'wechat',
business_line: 'miniapp',
},
unionType: '', // 渠道号
// MINI_APP_DOMAIN: 'miniapp.yohobuy.com',
appid: appid,
business_line: 'miniapp', // 业务线
mini_app_type: '63',
},
production: {
domains: {
// production
api: 'https://2.yohobuy.com',
yohoApi: 'https://api.yoho.cn',
yohoLogin: 'https://api.yoho.cn'
},
apiParams: {
client_type: 'miniapp',
private_key: private_key,
app_version: app_version,
// miniapp_version: '1.0.0',
source_type: 'wechat',
user_source: 'wechat',
business_line: 'miniapp',
},
unionType: '', // 渠道号
// MINI_APP_DOMAIN: 'miniapp.yohobuy.com',
appid: appid,
business_line: 'yohobuy', // 业务线
mini_app_type: '63',
}
}[process.env.NODE_ENV];