Selaa lähdekoodia

首页添加跳转

zhaoke 3 vuotta sitten
vanhempi
commit
3792a7687e
2 muutettua tiedostoa jossa 44 lisäystä ja 0 poistoa
  1. 2 0
      src/utils/request.js
  2. 42 0
      src/views/dashboard/index.vue

+ 2 - 0
src/utils/request.js

@@ -81,6 +81,7 @@ service.interceptors.response.use(
           type: 'error',
           duration: 5 * 1000,
           onClose: () => {
+            store.dispatch('tagsView/delAllViews').then(() => { })
             store.dispatch('user/resetToken').then(() => {
               location.reload()
             })
@@ -103,6 +104,7 @@ service.interceptors.response.use(
         type: 'error',
         duration: 5 * 1000,
         onClose: () => {
+          store.dispatch('tagsView/delAllViews').then(() => { })
           store.dispatch('user/resetToken').then(() => {
             location.reload()
           })

+ 42 - 0
src/views/dashboard/index.vue

@@ -58,6 +58,7 @@ import { mapGetters } from 'vuex'
 import Analysis from './components/analysis.vue'
 import Journal from './components/journal.vue'
 import { GetOthSystem } from '@/api/apiHome'
+import axios from 'axios'
 export default {
   name: 'Dashboard',
   components: { Analysis, Journal },
@@ -194,6 +195,47 @@ export default {
     toApp (item) {
       if (item.appUrl) {
         window.open(item.appUrl)
+        const datas = item.inputs
+        const arrs = []
+        if (datas && datas.length) {
+          datas.forEach(item => {
+            const obj = {}
+            if (item.AppInputName == 'token' || item.AppInputName == 'Token' || item.AppInputName == 'TOKEN') {
+              obj[item.AppInputName] = sessionStorage.getItem('token')
+            } else if (item.AppInputName == 'loginName' || item.AppInputName == 'userName') {
+              obj[item.AppInputName] = sessionStorage.getItem('userName')
+            }
+            arrs.push(obj)
+          })
+          if (item.requestType == 1) {
+            const getParams = Object.assign(...arrs)
+            axios.get(item.appUrl, {
+              params: getParams
+            }).then(res => {
+              console.log(res)
+            }).catch(err => {
+              console.log(err)
+            })
+          } else if (item.requestType == 2) {
+            const bodyType = item.bodyType
+            let type = 'application/json'
+            if (bodyType == 'json') {
+              type = 'application/json'
+            }
+            axios.post(item.appUrl, {
+              userName: sessionStorage.getItem('userName')
+            }, {
+              headers: {
+                'token': sessionStorage.getItem('token'),
+                'Content-Type': type
+              }
+            }).then(res => {
+              console.log(res)
+            }).catch(err => {
+              console.log(err)
+            })
+          }
+        }
       }
     }
   }