.env.dev.js 955 B

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