Browse Source

Merge remote-tracking branch 'origin/main'

xuyonghao 1 year ago
parent
commit
f458d620c1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/components/Slider.vue

+ 2 - 1
src/components/Slider.vue

@@ -255,7 +255,8 @@ export default defineComponent({
     const toRagflow = async () => {
       const { ragflow_token } = await ajax.user.getToken();
       if (ragflow_token) {
-          window.open(`http://127.0.0.1:11080/login?ragflow_token=${ragflow_token}`, "_blank");
+        // 太初的内网地址,先写死
+        window.open(`http://127.0.0.1:11080/login?ragflow_token=${ragflow_token}`, "_blank");
       }
 
     }