From 556ce5b91a9544c7cea40d01f555ebe07c14377d Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期三, 22 四月 2026 15:56:55 +0800
Subject: [PATCH] feat(StackerCraneTaskSelector): 出库任务选择时检查 TargetAddress 输送线任务冲突

---
 Code/WCS/WIDESEAWCS_Client/src/api/http.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Code/WCS/WIDESEAWCS_Client/src/api/http.js b/Code/WCS/WIDESEAWCS_Client/src/api/http.js
index 7bd4f6a..0d7cc1f 100644
--- a/Code/WCS/WIDESEAWCS_Client/src/api/http.js
+++ b/Code/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:9292/';
+    axios.defaults.baseURL = window.webConfig.webApiBaseUrl;
 }
 else if (process.env.NODE_ENV == 'debug') {
-    axios.defaults.baseURL = 'http://127.0.0.1:8098/';
+    axios.defaults.baseURL = window.webConfig.webApiBaseUrl;
 }
 
 else if (process.env.NODE_ENV == 'production') {
-    axios.defaults.baseURL = 'http://115.159.85.185:9292/';
+    axios.defaults.baseURL = window.webConfig.webApiProduction;
 }
 if (!axios.defaults.baseURL.endsWith('/')) {
     axios.defaults.baseURL+="/";

--
Gitblit v1.9.3