.env.prod.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * @Author: liuzhenlin 461480418@qq.ocm
  3. * @Date: 2023-02-22 11:11:21
  4. * @LastEditors: liuzhenlin
  5. * @LastEditTime: 2023-02-23 10:50:18
  6. * @Description: file content
  7. * @FilePath: \oms\.env.prod.js
  8. */
  9. /*
  10. * @Author: liuzhenlin 461480418@qq.ocm
  11. * @Date: 2023-02-22 11:11:21
  12. * @LastEditors: liuzhenlin
  13. * @LastEditTime: 2023-02-23 10:11:57
  14. * @Description: file content
  15. * @FilePath: \oms\.env.dev.js
  16. */
  17. const config = {
  18. // # 租户码
  19. VUE_APP_TENANT: '8b9ec443',
  20. // # GateWay地址
  21. // VUE_APP_MicroSrvProxy_API: 'http://192.168.0.65:9981/',
  22. // VUE_APP_MicroSrvProxy_API: 'http://192.168.0.252:8200/',
  23. VUE_APP_MicroSrvProxy_API: 'https://oms.dashoo.cn/api/',
  24. // # 登录验证微服务名称
  25. // VUE_APP_AdminPath: 'dashoo.labsop.lims_latest_opms_admin',
  26. VUE_APP_AdminPath: 'dashoo.opms.admin-0.0.1',
  27. // # 业务接口微服务名称
  28. // VUE_APP_ParentPath: 'dashoo.labsop.lims_latest_opms_parent',
  29. VUE_APP_ParentPath: 'dashoo.opms.parent-0.0.1',
  30. // # 文件上传
  31. VUE_APP_UPLOAD_WEED: 'https://oms.dashoo.cn/dir/assign',
  32. // 协议
  33. VUE_APP_PROTOCOL:'https://'
  34. }
  35. module.exports = config