1234567891011121314151617181920212223242526272829 |
- import { requestIp } from './requestIP'
- /*eslint-disable*/ //规避eslint的检查,如没有eslint可不写
- export const mockUrl = 'http://10.179.24.123:8980' // 线上
- export const qualityUrl = 'http://10.190.6.249:8898' // 质量度量
- //虚拟硬件线下环境
- export const vehicleUrl_stable = 'http://10.190.6.249:9999' // 虚拟硬件 zhihui
- //虚拟硬件预发环境
- export const vehicleUrl_preonline = 'http://10.179.53.173:9999' // 虚拟硬件 zhihui
- //虚拟硬件线上环境
- export const vehicleUrl_online = 'http://10.179.91.236:9999' // 虚拟硬件 zhihui
- // -----------------------------------------2.0-----------------------------------------------
- export const projectManagementUrl = requestIp + '/project-management' //项目管理
- export const ldapServer = requestIp + '/ldap-server' //邮箱查询
- export const TeamManagement = projectManagementUrl // 团队配置 项目
- export const task_Url = projectManagementUrl // 任务
- export const Presentation = projectManagementUrl // 报告模块
- export const envWebUrl = requestIp + '/env-web' //环境web
- export const workbenchUrl = projectManagementUrl //工作台
|