Bladeren bron

跳转外部应用逻辑修改

zhongxiaoyu 2 jaren geleden
bovenliggende
commit
62e4532316
4 gewijzigde bestanden met toevoegingen van 221 en 112 verwijderingen
  1. 170 93
      src/router/routes/routes-file-one.js
  2. 3 3
      src/utils/validate.js
  3. 19 16
      src/views/dashboard/index.vue
  4. 29 0
      src/views/transferPage/index.vue

+ 170 - 93
src/router/routes/routes-file-one.js

@@ -1,127 +1,204 @@
 /*
  * @Author: your name
  * @Date: 2021-10-21 09:31:21
- * @LastEditTime: 2022-02-28 21:32:37
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-05-18 18:13:59
+ * @LastEditors: your name
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\router\routes\routes-file-one.js
  */
 import Layout from '@/layout'
 
-//首页
+// 首页
 const dashboardRoutes = {
   path: '/',
   component: Layout,
   redirect: '/dashboard',
   meta: { roles: ['dashboard'], title: '首页' },
-  children: [{
-    path: 'dashboard',
-    name: 'Dashboard',
-    component: () => import('@/views/dashboard/index'),
-    meta: { title: '首页', icon: 'dashboard', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png', affix: true }
-  }]
+  children: [
+    {
+      path: 'dashboard',
+      name: 'Dashboard',
+      component: () => import('@/views/dashboard/index'),
+      meta: {
+        title: '首页',
+        icon: 'dashboard',
+        imgstyle: 'ic_home_nav_defaul.png',
+        imgstyleup: 'ic_home_nav_check.png',
+        affix: true
+      }
+    }
+  ]
+}
+
+const transferRoutes = {
+  path: '/transferPage',
+  component: () => import('@/views/transferPage')
 }
 
-//权限管理
+// 权限管理
 const authorityRoutes = {
   path: '/authority',
   component: Layout,
-  meta: { roles: ['authority_menu'], title: '权限项管理', },
-  children: [{
-    path: '/authority',
-    component: () => import('@/views/authorityManagement/index'),
-    meta: { title: '权限管理', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' },
-    children: [
-      {
-        path: '/authority',
-        name: 'AuthorityHome',
-        component: () => import('@/views/authorityManagement/components/authorityHome'),
-        meta: { title: '权限项管理', roles: ['authority_page'], icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      },
-      {
-        path: 'appAdd',
-        name: 'AuthorityAppAdd',
-        component: () => import('@/views/authorityManagement/components/authorityAppAdd'),
-        meta: { title: '新增应用', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      },
-      {
-        path: 'appEdit',
-        name: 'AuthorityAppEdit',
-        component: () => import('@/views/authorityManagement/components/authorityAppEdit'),
-        meta: { title: '编辑应用', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      },
-      {
-        path: 'addPower',
-        name: 'AuthorityPowerAdd',
-        component: () => import('@/views/authorityManagement/components/authorityPowerAdd'),
-        meta: { title: '新增权限项', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
+  meta: { roles: ['authority_menu'], title: '权限项管理' },
+  children: [
+    {
+      path: '/authority',
+      component: () => import('@/views/authorityManagement/index'),
+      meta: {
+        title: '权限管理',
+        icon: 'authority',
+        imgstyle: 'ic_home_nav_defaul.png',
+        imgstyleup: 'ic_home_nav_check.png'
       },
-      {
-        path: 'editPower',
-        name: 'AuthorityPowerEdit',
-        component: () => import('@/views/authorityManagement/components/authorityPowerEdit'),
-        meta: { title: '编辑权限项', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      }
-    ]
-  }]
+      children: [
+        {
+          path: '/authority',
+          name: 'AuthorityHome',
+          component: () => import('@/views/authorityManagement/components/authorityHome'),
+          meta: {
+            title: '权限项管理',
+            roles: ['authority_page'],
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'appAdd',
+          name: 'AuthorityAppAdd',
+          component: () => import('@/views/authorityManagement/components/authorityAppAdd'),
+          meta: {
+            title: '新增应用',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'appEdit',
+          name: 'AuthorityAppEdit',
+          component: () => import('@/views/authorityManagement/components/authorityAppEdit'),
+          meta: {
+            title: '编辑应用',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'addPower',
+          name: 'AuthorityPowerAdd',
+          component: () => import('@/views/authorityManagement/components/authorityPowerAdd'),
+          meta: {
+            title: '新增权限项',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'editPower',
+          name: 'AuthorityPowerEdit',
+          component: () => import('@/views/authorityManagement/components/authorityPowerEdit'),
+          meta: {
+            title: '编辑权限项',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        }
+      ]
+    }
+  ]
 }
 
-//角色管理
+// 角色管理
 const roleRoutes = {
   path: '/role',
   component: Layout,
   meta: { roles: ['role_menu'], title: '角色管理' },
-  children: [{
-    path: '/role',
-    component: () => import('@/views/authorityManagement/components/authorityRole'),
-    meta: { title: '角色管理', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' },
-    children: [
-      {
-        path: '/role',
-        name: 'AuthorityRoleHome',
-        component: () => import('@/views/authorityManagement/components/authorityRoleHome'),
-        meta: { title: '角色管理', roles: ['role_page'], icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      },
-      {
-        path: 'addRole',
-        name: 'AuthorityRoleAdd',
-        component: () => import('@/views/authorityManagement/components/authorityRoleAdd'),
-        meta: { title: '新增角色', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
+  children: [
+    {
+      path: '/role',
+      component: () => import('@/views/authorityManagement/components/authorityRole'),
+      meta: {
+        title: '角色管理',
+        icon: 'authority',
+        imgstyle: 'ic_home_nav_defaul.png',
+        imgstyleup: 'ic_home_nav_check.png'
       },
-      {
-        path: 'editRole',
-        name: 'AuthorityRoleEdit',
-        component: () => import('@/views/authorityManagement/components/authorityRoleEdit'),
-        meta: { title: '编辑角色', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      }
-    ]
-  }]
+      children: [
+        {
+          path: '/role',
+          name: 'AuthorityRoleHome',
+          component: () => import('@/views/authorityManagement/components/authorityRoleHome'),
+          meta: {
+            title: '角色管理',
+            roles: ['role_page'],
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'addRole',
+          name: 'AuthorityRoleAdd',
+          component: () => import('@/views/authorityManagement/components/authorityRoleAdd'),
+          meta: {
+            title: '新增角色',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        },
+        {
+          path: 'editRole',
+          name: 'AuthorityRoleEdit',
+          component: () => import('@/views/authorityManagement/components/authorityRoleEdit'),
+          meta: {
+            title: '编辑角色',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        }
+      ]
+    }
+  ]
 }
 
-//标段管理
+// 标段管理
 const lotRoutes = {
   path: '/lot',
   component: Layout,
   meta: { title: '标段管理' },
-  children: [{
-    path: '/lot',
-    name: 'Lot',
-    component: () => import('@/views/lotAuthorization'),
-    meta: { title: '标段管理', icon: 'dashboard', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png', affix: true },
-    children: [
-      {
-        path: '/lot',
-        name: 'lotHome',
-        component: () => import('@/views/lotAuthorization/components/home.vue'),
-        meta: { title: '标段授权', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
-      }
-    ]
-  }]
+  children: [
+    {
+      path: '/lot',
+      name: 'Lot',
+      component: () => import('@/views/lotAuthorization'),
+      meta: {
+        title: '标段管理',
+        icon: 'dashboard',
+        imgstyle: 'ic_home_nav_defaul.png',
+        imgstyleup: 'ic_home_nav_check.png',
+        affix: true
+      },
+      children: [
+        {
+          path: '/lot',
+          name: 'lotHome',
+          component: () => import('@/views/lotAuthorization/components/home.vue'),
+          meta: {
+            title: '标段授权',
+            icon: 'authority',
+            imgstyle: 'ic_home_nav_defaul.png',
+            imgstyleup: 'ic_home_nav_check.png'
+          }
+        }
+      ]
+    }
+  ]
 }
 
-export default [
-  dashboardRoutes,
-  authorityRoutes,
-  roleRoutes,
-  lotRoutes
-]
+export default [dashboardRoutes, authorityRoutes, roleRoutes, lotRoutes, transferRoutes]

+ 3 - 3
src/utils/validate.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2021-12-13 09:43:22
- * @LastEditTime: 2022-04-11 14:56:25
+ * @LastEditTime: 2022-04-29 17:03:30
  * @LastEditors: your name
  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  */
@@ -35,7 +35,7 @@ export function orgTree (str) {
   return valid_map.indexOf(str.trim()) >= 0
 }
 
-//  岗位树构造
+// 岗位树构造
 export function translateDataToTreeAll (data, parentKey, parentIDKey) {
   let parent = data.filter((value) => Number(value[parentKey]) <= 0);// 父数据
   let children = data.filter((value) => Number(value[parentKey]) > 0);// 子数据
@@ -306,7 +306,7 @@ export function lengthValidator (rule, value, callback) {
   if (realLength === 0) {
     callback()
   } else if (rule.min && realLength < rule.min) {
-    rule.message += ` ${realLength}/${rule.min}`
+    rule.message += `  ${realLength}/${rule.min}`
     callback(new Error('长度小于最小值'))
   } else if (rule.max && realLength > rule.max) {
     rule.message += `  ${realLength}/${rule.max}`

+ 19 - 16
src/views/dashboard/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-10-14 17:17:53
- * @LastEditTime: 2022-04-21 16:07:46
+ * @LastEditTime: 2022-05-18 19:48:48
  * @LastEditors: your name
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\views\dashboard\index.vue
@@ -394,21 +394,23 @@ export default {
             }
           })
           if (Number(item.requestType) === 1) {
-            method = 'get'
-            const form = document.createElement('form')
-            form.action = item.appUrl + (url.length ? '?' + url.join('&') : '')
-            form.target = '_blank'
-            form.method = method
-            form.style.display = 'none'
-            for (const key in params) {
-              const input = document.createElement('input')
-              input.name = key
-              input.value = params[key]
-              form.appendChild(input)
-            }
-            document.body.appendChild(form)
-            form.submit()
-            document.body.removeChild(form)
+            // method = 'get'
+            // const form = document.createElement('form')
+            // form.action = item.appUrl + (url.length ? '?' + url.join('&') : '')
+            // form.target = '_blank'
+            // form.method = method
+            // form.style.display = 'none'
+            // for (const key in params) {
+            //   const input = document.createElement('input')
+            //   input.name = key
+            //   input.value = params[key]
+            //   form.appendChild(input)
+            // }
+            // document.body.appendChild(form)
+            // form.submit()
+            // document.body.removeChild(form)
+            const fullURL = item.appUrl + (url.length ? url.join('&') : '&') + qs.stringify(params)
+            window.open(window.location.href.split('#')[0] + '#/transferPage?url=' + fullURL)
             const now = parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
             const logData = {
               LogInfo: params,
@@ -461,6 +463,7 @@ export default {
               })
               if (result.code === 0) {
                 result.data && window.open(result.data)
+                // result.data && window.open(window.location.href.split('#')[0] + '#/transferPage?url=' + result.data)
               } else {
                 this.$message.error(result.message)
               }

+ 29 - 0
src/views/transferPage/index.vue

@@ -0,0 +1,29 @@
+<!--
+ * @Author: Badguy
+ * @Date: 2022-05-18 18:10:20
+ * @LastEditTime: 2022-05-18 19:15:43
+ * @LastEditors: your name
+ * @Description: 跳转中转页
+ * have a nice day!
+-->
+<template>
+  <div>跳转中······</div>
+</template>
+
+<script>
+import qs from 'qs'
+
+export default {
+  mounted() {
+    const query = this.$route.query
+    if (query?.url) {
+      const url = query.url
+      delete query.url
+      window.location.href = url + '?' + qs.stringify(query)
+    }
+  }
+}
+</script>
+
+<style>
+</style>