wanger 1 week ago
parent
commit
d4cc62a42e
4 changed files with 18 additions and 9 deletions
  1. 1 1
      manager/.env.production
  2. 14 5
      website/.env.production
  3. 1 1
      website/src/utils/websocket.js
  4. 2 2
      website/vite.config.js

+ 1 - 1
manager/.env.production

@@ -7,6 +7,6 @@ ENV = 'production'
 #启动端口
 port = '5002'
 # 国土空间规划“一张图”实施监督信息系统/生产环境
-VUE_APP_BASE_API = 'http://10.254.151.54:8080'
+VUE_APP_BASE_API = 'http://10.254.98.222:8080'
 #通辽部署环境
 #VUE_APP_BASE_API = 'http://10.255.133.174:8080'

+ 14 - 5
website/.env.production

@@ -8,11 +8,20 @@ port = '5000'
 # 国土空间规划“一张图”实施监督信息系统/生产环境
 #VITE_APP_BASE_API = 'http://192.168.60.40:8080'
 #VITE_ARC_SERVER_API = 'http://192.168.100.252:6080'
-#通辽部署环境
-VITE_APP_BASE_API = 'http://10.254.151.54:8080'
-VITE_ARC_SERVER_API = 'http://10.254.151.54:6080'
-# 单点登录-市级一张图系统
-VITE_APP_SSO_BASE_API = 'http://10.255.137.105:8080'
+#察哈尔右翼前旗部署环境
+#VITE_APP_BASE_API = 'http://10.254.151.54:8080'
+#VITE_ARC_SERVER_API = 'http://10.254.151.54:6080'
+#VITE_APP_SSO_BASE_API = 'http://10.255.137.105:8080'
+
+#凉城部署环境
+#VITE_APP_BASE_API = 'http://10.254.150.98:8080'
+#VITE_ARC_SERVER_API = 'http://10.254.150.98:6080'
+#VITE_APP_SSO_BASE_API = 'http://10.255.137.105:8080'
+
+#准格尔旗部署环境
+VITE_APP_BASE_API = 'http://10.254.98.222:8080'
+VITE_ARC_SERVER_API = 'http://10.254.98.222:6080'
+VITE_APP_SSO_BASE_API = 'http://10.255.134.200:8080'
 
 # 是否在打包时开启压缩,支持 gzip 和 brotli
 #VITE_BUILD_COMPRESS = gzip

+ 1 - 1
website/src/utils/websocket.js

@@ -22,7 +22,7 @@ export const socket = {
         socket.url = newUrl;
         // socket.websocket = new WebSocket(`ws://` + baseUrl.replace("http://", "") + `/apply/sbjd/` + socket.url);
         if (location.hostname == "localhost") {
-            socket.websocket = new WebSocket(`ws://192.168.60.240:8080/apply/sbjd/` + socket.url);
+            socket.websocket = new WebSocket(`ws://192.168.60.52:8080/apply/sbjd/` + socket.url);
         } else {
             socket.websocket = new WebSocket(`ws://` + baseUrl.replace("http://", "") + `/apply/sbjd/` + socket.url);
         }

+ 2 - 2
website/vite.config.js

@@ -54,7 +54,7 @@ export default defineConfig(({ mode, command }) => {
       proxy: {
         "/dev-api": {
           // target: 'http://localhost:8080',
-          target: "http://192.168.60.240:8080",
+          target: "http://192.168.60.52:8080",
           changeOrigin: true,
           rewrite: (p) => p.replace(/^\/dev-api/, ""),
         },
@@ -77,7 +77,7 @@ export default defineConfig(({ mode, command }) => {
           // rewrite: (p) => p.replace(/^\/files/, '')
         },
         "/file": {
-          target: "http://192.168.60.240:8080",
+          target: "http://192.168.60.52:8080",
           ws: false,
           changeOrigin: true,
           // rewrite: (p) => p.replace(/^\/files/, '')