【IMP】删除注释代码

This commit is contained in:
皮伟
2019-12-25 13:35:03 +08:00
parent aa6e28bcc3
commit 5165aabff8

View File

@@ -11,51 +11,34 @@ let apiDomain, imgDomain, assetsUrl, mainUrl, payUrl // 保融支付的收银台
console.log('环境:', process.env.VUE_APP_FLAG) console.log('环境:', process.env.VUE_APP_FLAG)
switch (process.env.VUE_APP_FLAG) { switch (process.env.VUE_APP_FLAG) {
case 'dev': case 'dev':
// apiDomain = 'http://47.96.143.111:7000/api/v1'
apiDomain = 'http://139.199.50.151:7000/api/v1' // 国富api apiDomain = 'http://139.199.50.151:7000/api/v1' // 国富api
// apiDomain = 'http://10.11.2.247004/'
// imgDomain = 'http://10.10.100.98:7012/updown' // dev
imgDomain = 'http://211.159.248.123:7012/updown' // dev imgDomain = 'http://211.159.248.123:7012/updown' // dev
// 静态服务资源 // 静态服务资源
assetsUrl = 'http://139.199.50.151:8000/app/' assetsUrl = 'http://139.199.50.151:8000/app/'
mainUrl = 'http://139.199.50.151' mainUrl = 'http://139.199.50.151'
// payUrl = 'http://10.10.100.84:7003/s3-modules-gateway/embed/gateway.action'
payUrl = 'http://funduat.e-guofu.com/s3-modules-gateway/embed/gateway.action' payUrl = 'http://funduat.e-guofu.com/s3-modules-gateway/embed/gateway.action'
break break
case 'uat': case 'uat':
apiDomain = 'http://115.159.235.59:7000/api/v1' // 国富api apiDomain = 'http://115.159.235.59:7000/api/v1' // 国富api
// apiDomain = 'http://10.11.2.247004/' imgDomain = 'http://139.199.50.145:7012/updown'
// imgDomain = 'http://10.10.100.98:7012/updown' // dev
imgDomain = 'http://139.199.50.145:7012/updown' // dev
// 静态服务资源 // 静态服务资源
assetsUrl = 'http://115.159.235.59:8000/app/' assetsUrl = 'http://115.159.235.59:8000/app/'
mainUrl = 'http://115.159.235.59' mainUrl = 'http://115.159.235.59'
// payUrl = 'http://10.10.100.84:7003/s3-modules-gateway/embed/gateway.action'
payUrl = 'http://funduat.e-guofu.com/s3-modules-gateway/embed/gateway.action' payUrl = 'http://funduat.e-guofu.com/s3-modules-gateway/embed/gateway.action'
break break
case 'prd': case 'prd':
apiDomain = 'https://iagentsales.e-guofu.com/api/v1' apiDomain = 'https://iagentsales.e-guofu.com/api/v1'
imgDomain = 'https://iagentsales-ud.e-guofu.com:8553/updown' imgDomain = 'https://iagentsales-ud.e-guofu.com:8553/updown'
// imgDomain = 'http://10.10.100.98:7012/updown' // 上生产前
// 静态服务资源
// assetsUrl = 'http://211.159.248.138:7001/' // 上生产前
assetsUrl = 'https://iagentsales-sr.e-guofu.com:8443/' assetsUrl = 'https://iagentsales-sr.e-guofu.com:8443/'
mainUrl = 'https://iagentsales.e-guofu.com' mainUrl = 'https://iagentsales.e-guofu.com'
payUrl = 'https://uns3.e-guofu.com/s3-modules-gateway/embed/gateway.action' payUrl = 'https://uns3.e-guofu.com/s3-modules-gateway/embed/gateway.action'
break break
case 'dat': case 'dat':
// apiDomain = 'http://47.96.143.111:7000/api/v1' apiDomain = ''
apiDomain = '' // 国富api imgDomain = ''
// apiDomain = 'http://10.11.2.247004/'
// imgDomain = 'http://10.10.100.98:7012/updown' // dev
imgDomain = '' // dev
// 静态服务资源 // 静态服务资源
assetsUrl = '' assetsUrl = ''
mainUrl = '' mainUrl = ''
// payUrl = 'http://10.10.100.84:7003/s3-modules-gateway/embed/gateway.action'
payUrl = '' payUrl = ''
break break
} }