#
Junjie
2024-04-13 e9a4418c14ef68fb454300b092c413e8df259ec2
zy-asrs-flow/src/config/setting.ts
@@ -1,5 +1,11 @@
// 接口地址
export const API_BASE_URL: string = 'http://localhost:9090/wcs';
export const IP: string = '192.168.2.95';
export const PORT: number = 9090;
export const API_BASE_URL: string = 'http://' + IP + ':' + PORT + '/wcs';
export const WEBSOCKET_BASE_URL: string = 'ws://' + IP + ':' + PORT + '/wcs';
export const API_TIMEOUT: number = 60;
// 项目名称
export const PROJECT_NAME: string = 'admin';