apiConfig.js 517 B

123456789101112131415161718192021222324
  1. const env = 'production' // 开发环境deveploment 生产环境production
  2. /**
  3. * items : 商品信息相关业务
  4. */
  5. const api = {
  6. // 开发环境
  7. dev: {
  8. items: 'http://items.aiyangniu.net',
  9. cow: 'http://cow.aiyangniu.net',
  10. user: 'http://account2.aiyangniu.net'
  11. },
  12. // 生产环境
  13. pro: {
  14. items: 'http://items.aiyangniu.cn',
  15. cow: 'http://cow.aiyangniu.net',
  16. user: 'http://account.aiyangniu.net'
  17. }
  18. }
  19. module.exports = {
  20. api: env === 'deveploment' ? api.dev : api.pro,
  21. env,
  22. }