diff --git a/apps/web-antd/vite.config.mts b/apps/web-antd/vite.config.mts index cfe1479..1e617be 100644 --- a/apps/web-antd/vite.config.mts +++ b/apps/web-antd/vite.config.mts @@ -10,8 +10,8 @@ export default defineConfig(async () => { changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, ''), // mock代理目标地址 - target: 'http://localhost:8081/api', - // target: 'http://43.139.10.64:8082/api', + // target: 'http://localhost:8081/api', + target: 'http://43.139.10.64:8082/api', // target: 'http://192.168.3.238:8081/api', ws: true, }, diff --git a/packages/effects/common-ui/src/ui/spider/spider-work-view.vue b/packages/effects/common-ui/src/ui/spider/spider-work-view.vue index d49bb0a..9613384 100644 --- a/packages/effects/common-ui/src/ui/spider/spider-work-view.vue +++ b/packages/effects/common-ui/src/ui/spider/spider-work-view.vue @@ -182,7 +182,7 @@ const startPolling = async () => { style: { marginLeft: '10px' }, onClick: () => { const link = document.createElement('a'); - link.href = download_url; + link.href = `http://47.112.173.8:6806${download_url}`; link.download = fetchResult.value; document.body.append(link); link.click();