CzRger 5 mesi fa
parent
commit
ac108a24c5
3 ha cambiato i file con 10 aggiunte e 8 eliminazioni
  1. 1 1
      src/views/web/list/index-worker.vue
  2. 1 1
      src/views/web/list/index.vue
  3. 8 6
      vite.config.ts

+ 1 - 1
src/views/web/list/index-worker.vue

@@ -441,7 +441,7 @@ const toArchive = (item) => {
       }
     } break
   }
-  window.open(url, "_blank")
+  window.open(`/${import.meta.env.VITE_BASE}${url}`, "_blank")
 }
 const initDictionary = () => {
   DictionaryStore.initDict('gx_method')

+ 1 - 1
src/views/web/list/index.vue

@@ -441,7 +441,7 @@ const toArchive = (item) => {
       }
     } break
   }
-  window.open(url, "_blank")
+  window.open(`/${import.meta.env.VITE_BASE}${url}`, "_blank")
 }
 const initDictionary = () => {
   DictionaryStore.initDict('gx_method')

+ 8 - 6
vite.config.ts

@@ -59,17 +59,19 @@ export default defineConfig({
           return path.replace(/^\/mock-api/, 'mock-api')
         }
       },
-      '/ssw-api': {
-        target: 'http://10.110.45.26:18069/',
-        // target: 'http://8.130.72.63:18068/',
+      '/ssw-api/api': {
+        // target: 'http://10.110.45.26:18069/',
+        target: 'http://8.130.72.63:18068/',
         changeOrigin: true,
         rewrite: (path) => {
-          return path.replace(/^\/api/, '')
+          return path.replace(/^\/ssw-api\/api/, '')
+          // console.log(path)
+          // return path
         }
       },
       '/ws-api': {
-        // target: 'ws://8.130.72.63:18073/',
-        target: 'ws://10.110.45.26:18069/ws-api',
+        target: 'ws://8.130.72.63:18073/',
+        // target: 'ws://10.110.45.26:18069/ws-api',
         ws: true,
         changeOrigin: true,
         rewrite: path => {