From 734f49c3f74e4a46cfb5892ce60dbf1bb86e74ab Mon Sep 17 00:00:00 2001 From: wankeda <Administrator@DESKTOP-HAU3ST3> Date: 星期二, 22 七月 2025 19:14:39 +0800 Subject: [PATCH] 出入库流程 --- WCS/WIDESEAWCS_Client/src/api/http.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WCS/WIDESEAWCS_Client/src/api/http.js b/WCS/WIDESEAWCS_Client/src/api/http.js index 1659049..13b0996 100644 --- a/WCS/WIDESEAWCS_Client/src/api/http.js +++ b/WCS/WIDESEAWCS_Client/src/api/http.js @@ -12,14 +12,14 @@ let loadingInstance; let loadingStatus = false; if (process.env.NODE_ENV == 'development') { - axios.defaults.baseURL = 'http://127.0.0.1:8099/'; + axios.defaults.baseURL = 'http://127.0.0.1:9291/'; } else if (process.env.NODE_ENV == 'debug') { - axios.defaults.baseURL = 'http://127.0.0.1:8099/'; + axios.defaults.baseURL = 'http://127.0.0.1:8098/'; } else if (process.env.NODE_ENV == 'production') { - axios.defaults.baseURL = 'http://127.0.0.1:8099/'; + axios.defaults.baseURL = 'http://10.30.4.92:9281/'; } if (!axios.defaults.baseURL.endsWith('/')) { axios.defaults.baseURL+="/"; -- Gitblit v1.9.3