Browse Source

部门字段,iframe加token

李文 4 years ago
parent
commit
ec7023db56
2 changed files with 12 additions and 3 deletions
  1. 11 2
      src/views/main/main-content.vue
  2. 1 1
      src/views/main/main.vue

+ 11 - 2
src/views/main/main-content.vue

@@ -9,16 +9,17 @@
 
 <script>
 import { isURL } from '@/utils/validate'
+import Cookies from 'js-cookie'
 export default {
   data () {
     return {
-      iframeURL: this.$route.meta.iframeURL,
+      iframeURL: this.addParams(this.$route.meta.iframeURL),
       isIframe: false
     }
   },
   watch: {
     $route () {
-      this.iframeURL = this.$route.meta.iframeURL
+      this.iframeURL = this.addParams(this.$route.meta.iframeURL)
       this.initUrl()
     }
   },
@@ -32,6 +33,14 @@ export default {
     // tabs, 是否通过iframe展示
     tabIsIframe (url) {
       return isURL(url)
+    },
+    addParams (url) {
+      let prevWord = '?'
+      if (url.indexOf(prevWord) > -1) {
+        prevWord = '&'
+      }
+      let _url = url + prevWord + 'sessionToken=' + Cookies.get('token')
+      return _url
     }
   }
 }

+ 1 - 1
src/views/main/main.vue

@@ -106,7 +106,7 @@ export default {
           return this.$message.error(res.msg)
         }
         this.$store.state.user.name = res.userInfo.displayName
-        this.$store.state.user.organizations = res.userInfo.organizations
+        this.$store.state.user.organizations = res.userInfo.organizations[0].organizationName
       }).catch(() => {})
     },
     // 获取权限