Merge branch 'feature/gray-gateway' into 'master'
增加灰度接口地址配置 增加灰度接口地址配置 See merge request !116
Showing
2 changed files
with
7 additions
and
1 deletions
@@ -226,6 +226,12 @@ if (global.env.Production) { | @@ -226,6 +226,12 @@ if (global.env.Production) { | ||
226 | domains.platform = 'http://api.platform.yohoops.org/platform'; | 226 | domains.platform = 'http://api.platform.yohoops.org/platform'; |
227 | domains.shop = 'http://10.66.50.140:30016'; | 227 | domains.shop = 'http://10.66.50.140:30016'; |
228 | } | 228 | } |
229 | +// 新配置灰度aip地址 lzhy 2020-09-24 | ||
230 | +if (global.env.Gray) { | ||
231 | + domains.erp = 'http://erp-pre.yohops.com'; | ||
232 | + domains.platform = 'http://api.platform.yohoops.org/platform'; | ||
233 | + domains.shop = 'http://10.66.50.140:30016'; | ||
234 | +} | ||
229 | 235 | ||
230 | _.each(domainApis, (apis, domainName) => { | 236 | _.each(domainApis, (apis, domainName) => { |
231 | _.each(apis, (url, api) => { | 237 | _.each(apis, (url, api) => { |
-
Please register or login to post a comment