| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * @Author: liuzhenlin 461480418@qq.ocm
- * @Date: 2023-02-22 11:11:21
- * @LastEditors: liuzhenlin
- * @LastEditTime: 2023-02-22 17:28:30
- * @Description: file content
- * @FilePath: \oms\.env.dev.js
- */
- const config = {
- // # 租户码
- VUE_APP_TENANT: 'default',
- // # 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:9981/',
- // # 登录验证微服务名称
- 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: 'http://192.168.0.252:9333/dir/assign',
- // 协议
- VUE_APP_PROTOCOL:'http://'
- }
- module.exports = config
|