Browse Source

六统一统一资源临时嵌入文件

hm 2 months ago
parent
commit
6c26b85bbd

+ 1 - 1
.env.development

@@ -12,6 +12,6 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
 
 # VUE_APP_BASE_API  = 'http://10.1.161.127:8080'
 # VUE_APP_BASE_API  = 'http://10.1.161.183:6661'
-VUE_APP_BASE_API  = 'http://192.168.136.166:6661'
+VUE_APP_BASE_API  = 'http://10.1.161.44:6661'
 
 # VUE_APP_BASE_API  = 'http://10.1.162.158:6661'

+ 6 - 5
src/api/login.js

@@ -61,17 +61,18 @@ export function getCodeImg() {
 
 
 // catalog 添加登录用户
-export function insertTabUser() {
+export function insertTabUser(data) {
   return request({
     url: '/web/tab-user/insertTabUser',
-    method: 'get'
+    method: 'post',
+    data:data
   })
 }
 
 //  catalog  token获取
 export function getCatalogToken() {
   return request({
-    url: '/web/user',
-    method: 'get'
+    url: '/web/getCatalogToken',
+    method: 'post'
   })
-}
+}

+ 20 - 2
src/store/modules/user.js

@@ -1,5 +1,5 @@
-import { login, logout, getInfo } from '@/api/login'
-import { getToken, setToken, removeToken } from '@/utils/auth'
+import { login, logout, getInfo,insertTabUser,getCatalogToken } from '@/api/login'
+import { getToken, setToken, removeToken,setCatalogToken } from '@/utils/auth'
 
 const user = {
   state: {
@@ -41,8 +41,26 @@ const user = {
       const uuid = userInfo.uuid
       return new Promise((resolve, reject) => {
         login(username, password, code, uuid).then(res => {
+          console.log(res,'res==userID');
+          
           setToken(res.token)
           commit('SET_TOKEN', res.token)
+
+           insertTabUser({username,password,userId:res.res}).then(res1=>{
+              if(+res1.code===200){
+                // getCatalogToken().then(result=>{
+                //   if (+result.code===200) {
+                //     setCatalogToken(result)
+                //     var params = {
+                //       type: "setToken",
+                //       token: result
+                //   }
+                //    window.parent.postMessage(params, "*");
+                //   }
+                // })
+            
+              }
+            })
           resolve()
         }).catch(error => {
           reject(error)

+ 27 - 1
src/utils/auth.js

@@ -1,6 +1,8 @@
 import Cookies from 'js-cookie'
 
-const TokenKey = 'Admin-Token'
+// const TokenKey = 'Admin-Token'
+const TokenKey = 'Six-Admin-Token'
+const CatalogTokenKey = 'Admin-Token'
 
 export function getToken() {
   return Cookies.get(TokenKey)
@@ -8,8 +10,32 @@ export function getToken() {
 
 export function setToken(token) {
   return Cookies.set(TokenKey, token)
+
+  // return  Cookies.set(TokenKey, token, {
+  //   // expires: 7,       // 设置 Cookie 过期时间(例如 7 天)
+  //   path: process.env.VUE_APP_BASE_API,        // 设置 Cookie 路径(通常为根路径)
+  //   domain: 'http://localhost:8090/catalog',   // 设置共享 Cookie 的根域名,确保父系统和子系统可以共享 Cookie
+  //   secure: true,     // 确保通过 HTTPS 传输 Cookie
+  //   sameSite: 'None'  // 允许跨域传递 Cookie
+  // });
 }
 
 export function removeToken() {
   return Cookies.remove(TokenKey)
 }
+
+
+export function setCatalogToken(token) {
+  return Cookies.set(CatalogTokenKey, token)
+
+  // return  Cookies.set(CatalogTokenKey, token, {
+  //   expires: 7,       // 设置 Cookie 过期时间(例如 7 天)
+  //   path: process.env.VUE_APP_BASE_API,        // 设置 Cookie 路径(通常为根路径)
+  //   domain: 'http://localhost:8090',   // 设置共享 Cookie 的根域名,确保父系统和子系统可以共享 Cookie
+  //   secure: true,     // 确保通过 HTTPS 传输 Cookie
+  //   sameSite: 'None'  // 允许跨域传递 Cookie
+  // });
+}
+
+
+

+ 56 - 0
src/views/unified-resources/data-directory/index.vue

@@ -0,0 +1,56 @@
+<template>
+  <el-container>
+    <iframe
+      :src="iframeUrl"
+      width="100%"
+      height="840"
+      frameborder="0"
+      scrolling="auto"
+      id="myIframe"
+      ref="iframe"
+    ></iframe>
+  </el-container>
+</template>
+
+<script>
+import { getCatalogToken } from "@/api/login";
+import { setCatalogToken } from '@/utils/auth'
+export default {
+  data() {
+    return {
+      iframeUrl: "http://localhost:8090/catalog/SixdirectoryManament", //要跳转的菜单页
+    };
+  },
+  mounted() {
+    // 获取 iframe 元素
+    const iframe = this.$refs.iframe;
+
+    // 监听来自 iframe 的消息
+    window.addEventListener("message", this.handleIframeMessage, false);
+
+    // 获取 token 并发送给 iframe
+    getCatalogToken().then((result) => {
+      const token = result; // 假设 result 是整个 token 对象
+      setCatalogToken(token)
+      // 更新 iframe 的 URL 后再发送 token
+      this.iframeUrl = this.iframeUrl; // 强制刷新 iframe(可能需要更改为其他 URL)
+
+      // 确保 iframe 已加载,再发送 token
+      iframe.onload = () => {
+        const params = {
+          type: "setToken",
+          token: token, // 传递 token
+        };
+
+        // 使用 postMessage 向 iframe 发送 token
+        iframe.contentWindow.postMessage(params, "http://localhost:8090"); // 这里是子系统的域名,需要与子系统的 URL 匹配
+      };
+    });
+  },
+  methods: {
+    changeIframeUrl(url) {
+      this.iframeUrl = url;
+    },
+  },
+};
+</script>

+ 56 - 0
src/views/unified-resources/information-system/index.vue

@@ -0,0 +1,56 @@
+<template>
+  <el-container>
+    <iframe
+      :src="iframeUrl"
+      width="100%"
+      height="840"
+      frameborder="0"
+      scrolling="auto"
+      id="myIframe"
+      ref="iframe"
+    ></iframe>
+  </el-container>
+</template>
+
+<script>
+import { getCatalogToken } from "@/api/login";
+import { setCatalogToken } from '@/utils/auth'
+export default {
+  data() {
+    return {
+      iframeUrl: "http://localhost:8090/catalog/SixInfoSystemManage", //要跳转的菜单页
+    };
+  },
+  mounted() {
+    // 获取 iframe 元素
+    const iframe = this.$refs.iframe;
+
+    // 监听来自 iframe 的消息
+    window.addEventListener("message", this.handleIframeMessage, false);
+
+    // 获取 token 并发送给 iframe
+    getCatalogToken().then((result) => {
+      const token = result; // 假设 result 是整个 token 对象
+      setCatalogToken(token)
+      // 更新 iframe 的 URL 后再发送 token
+      this.iframeUrl = this.iframeUrl; // 强制刷新 iframe(可能需要更改为其他 URL)
+
+      // 确保 iframe 已加载,再发送 token
+      iframe.onload = () => {
+        const params = {
+          type: "setToken",
+          token: token, // 传递 token
+        };
+
+        // 使用 postMessage 向 iframe 发送 token
+        iframe.contentWindow.postMessage(params, "http://localhost:8090"); // 这里是子系统的域名,需要与子系统的 URL 匹配
+      };
+    });
+  },
+  methods: {
+    changeIframeUrl(url) {
+      this.iframeUrl = url;
+    },
+  },
+};
+</script>

+ 32 - 1
src/views/unified-resources/job-directory/index.vue

@@ -6,17 +6,48 @@
       height="840"
       frameborder="0"
       scrolling="auto"
+      id="myIframe"
+      ref="iframe"
     ></iframe>
   </el-container>
 </template>
 
 <script>
+import { getCatalogToken } from "@/api/login";
+import { setCatalogToken } from '@/utils/auth'
 export default {
   data() {
     return {
-      iframeUrl: "http://localhost:8090/catalog/InfoSystemManageHome",
+      // iframeUrl: "http://localhost:8090/catalog/Upper-chain/DutyCatalogue", //要跳转的菜单页
+      iframeUrl: "http://localhost:8090/catalog/SixDutyCatalogue", //要跳转的菜单页
     };
   },
+  mounted() {
+    // 获取 iframe 元素
+    const iframe = this.$refs.iframe;
+
+    // 监听来自 iframe 的消息
+    window.addEventListener("message", this.handleIframeMessage, false);
+
+    // 获取 token 并发送给 iframe
+    getCatalogToken().then((result) => {
+      const token = result; // 假设 result 是整个 token 对象
+      setCatalogToken(token)
+      // 更新 iframe 的 URL 后再发送 token
+      this.iframeUrl = this.iframeUrl; // 强制刷新 iframe(可能需要更改为其他 URL)
+
+      // 确保 iframe 已加载,再发送 token
+      iframe.onload = () => {
+        const params = {
+          type: "setToken",
+          token: token, // 传递 token
+        };
+
+        // 使用 postMessage 向 iframe 发送 token
+        iframe.contentWindow.postMessage(params, "http://localhost:8090"); // 这里是子系统的域名,需要与子系统的 URL 匹配
+      };
+    });
+  },
   methods: {
     changeIframeUrl(url) {
       this.iframeUrl = url;

+ 1 - 1
vue.config.js

@@ -36,7 +36,7 @@ module.exports = {
       [process.env.VUE_APP_BASE_API]: {
         // target: `http://10.1.161.127:8080`,
         // target: `http://10.1.161.183:6661`,
-        target: `http://192.168.136.166:6661`,
+        target: `http://10.1.161.44:6661`,
         // target: `http://10.1.162.158:6661`,
 
         changeOrigin: true,