| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * @Author: liuzhenlin 461480418@qq.ocm
- * @Date: 2023-02-22 11:11:21
- * @LastEditors: liuzhenlin
- * @LastEditTime: 2023-02-23 10:50:18
- * @Description: file content
- * @FilePath: \oms\.env.prod.js
- */
- /*
- * @Author: liuzhenlin 461480418@qq.ocm
- * @Date: 2023-02-22 11:11:21
- * @LastEditors: liuzhenlin
- * @LastEditTime: 2023-02-23 10:11:57
- * @Description: file content
- * @FilePath: \oms\.env.dev.js
- */
- const config = {
- // # 租户码
- VUE_APP_TENANT: '8b9ec443',
- // # GateWay地址
- // VUE_APP_MicroSrvProxy_API: 'http://192.168.0.65:9981/',
- // VUE_APP_MicroSrvProxy_API: 'http://192.168.0.252:8200/',
- VUE_APP_MicroSrvProxy_API: 'https://oms.dashoo.cn/api/',
- // # 登录验证微服务名称
- // VUE_APP_AdminPath: 'dashoo.labsop.lims_latest_opms_admin',
- VUE_APP_AdminPath: 'dashoo.opms.admin-0.0.1',
- // # 业务接口微服务名称
- // VUE_APP_ParentPath: 'dashoo.labsop.lims_latest_opms_parent',
- VUE_APP_ParentPath: 'dashoo.opms.parent-0.0.1',
- // # 文件上传
- VUE_APP_UPLOAD_WEED: 'https://oms.dashoo.cn/dir/assign',
- // 协议
- VUE_APP_PROTOCOL:'https://'
- }
- module.exports = config
|