|
@@ -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)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|