#
luxiaotao1123
2024-04-12 5259c8d163b1d20659364e9b240f77c975a7067b
zy-asrs-flow/src/config/setting.ts
@@ -1,6 +1,9 @@
// 接口地址
export const API_BASE_URL: string = 'http://127.0.0.1:9090/wcs';
export const WEBSOCKET_BASE_URL: string = 'ws://127.0.0.1:9090/wcs';
export const IP: string = 'localhost';
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;