zhaoke il y a 2 ans
Parent
commit
5dbd8791b3
3 fichiers modifiés avec 162 ajouts et 427 suppressions
  1. 1 263
      src/components/table/index.vue
  2. 143 152
      src/getMenu.ts
  3. 18 12
      src/utils/validate.ts

+ 1 - 263
src/components/table/index.vue

@@ -1,270 +1,8 @@
 <template>
-  <div class="data-table" :style="{ marginTop: props.marginTop }">
-    <div :style="dataTableContentStyle" v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="data-table-content">
-      <div :class="props.isStatus || props.isStatuser ? 'flex' : 'flex-end'" class="data-table-btn">
-        <div v-if="props.isStatus || props.isStatuser" class="vStatus">
-          <slot name="header" />
-        </div>
-        <template v-if="props.isBtn">
-          <template v-if="props.isAuth">
-            <el-button v-if="props.btnAuthAdd" size="small" @click="handleAdd" plain type="primary">新增</el-button>
-          </template>
-          <template v-else>
-            <el-button size="small" @click="handleAdd" plain type="primary">新增</el-button>
-          </template>
-        </template>
-      </div>
-    </div>
-  </div>
-  <Dialog :flag="rmFlag">
-    <div class="airportInfoDialog">
-      <div class="title del-title">删除</div>
-      <div class="content del-content">
-        <span class="el-icon-error error r10"></span>您是否确认删除<span class="error l10">{{ rmTitle }}</span>
-        ?
-      </div>
-      <div class="foot right Delfoot">
-        <el-button size="medium" class="r24" @click="tableRemove" type="danger">删除</el-button>
-        <el-button size="medium" @click="rmFlag = false">取消</el-button>
-      </div>
-    </div>
-  </Dialog>
+  <div class="table"></div>
 </template>
 
 <script setup lang="ts">
-import { ref, reactive, onMounted, computed } from 'vue'
-import Dialog from '@/components/dialog/index.vue'
-//-------props-------
-const props = defineProps({
-  isDialog: {
-    type: Boolean,
-    default: true
-  },
-  tableup: {
-    type: Boolean,
-    default: false
-  },
-  //接口ID
-  dataId: {
-    type: [String, Number],
-    default: ''
-  },
-  editId: {
-    type: [String, Number],
-    default: ''
-  },
-  dataContent: {
-    type: Object,
-    default: () => ({})
-  },
-  //是否显示状态
-  isStatus: {
-    type: Boolean,
-    default: false
-  },
-  //是否显示名称
-  isStatuser: {
-    type: Boolean,
-    default: false
-  },
-  //弹框宽度
-  width: {
-    type: String,
-    default: '560px'
-  },
-  //弹框表单-行数
-  rows: {
-    type: Number,
-    default: 3
-  },
-  //弹框-表单文字宽度
-  labelWidth: {
-    type: String,
-    default: '80px'
-  },
-  //表格高度
-  tableHeight: {
-    type: [String, Number],
-    default: 0
-  },
-  minHeight: {
-    type: Number,
-    default: 65
-  },
-  //是否显示树形表格
-  isTree: {
-    type: Boolean,
-    default: false
-  },
-  //树形props
-  treeProps: {
-    type: Object,
-    default: function () {
-      return { children: 'children', hasChildren: 'hasChildren' }
-    }
-  },
-  //树形标识id
-  rowKeyTree: {
-    type: String,
-    default: 'companyID'
-  },
-  //是否显示新增按钮
-  isBtn: {
-    type: Boolean,
-    default: true
-  },
-  // 是否显示合计行
-  showSummary: {
-    type: Boolean,
-    default: false
-  },
-  marginTop: {
-    type: String,
-    default: '0px'
-  },
-  // 是否可选中行
-  selectionEnable: {
-    type: Boolean,
-    default: false
-  },
-  // 懒加载
-  withLazyLoad: {
-    type: Boolean,
-    default: false
-  },
-  // 不换行,溢出隐藏
-  showOverflowTooltip: {
-    type: Boolean,
-    default: false
-  },
-  // 表格-操作-列设置按钮显示
-  withColumnSet: {
-    type: Boolean,
-    default: false
-  },
-  // 表格-操作-项设置按钮显示
-  withItemSet: {
-    type: Boolean,
-    default: false
-  },
-  // 表格-操作-项设置按钮显示
-  withlodSet: {
-    type: Boolean,
-    default: false
-  },
-  // 表格-操作-节点按钮显示
-  withnodeSet: {
-    type: Boolean,
-    default: false
-  },
-  // 表格-操作-查询模板预览
-  withPreview: {
-    type: Boolean,
-    default: false
-  },
-  //操作列宽度
-  fixedWidth: {
-    type: String,
-    default: '180px'
-  },
-  //弹框是否显示在body上
-  isBody: {
-    type: Boolean,
-    default: false
-  },
-  //新增按钮权限
-  authAdd: {
-    type: String,
-    default: ''
-  },
-  //编辑按钮权限
-  authEdit: {
-    type: String,
-    default: ''
-  },
-  //删除按钮权限
-  authDel: {
-    type: String,
-    default: ''
-  },
-  //位置设置权限
-  authWithnodeSet: {
-    type: String,
-    default: ''
-  },
-  //航站设置权限
-  authWithlodSet: {
-    type: String,
-    default: ''
-  },
-  //是否启用权限按钮
-  isAuth: {
-    type: Boolean,
-    default: false
-  }
-})
-
-//--------emits--------
-const emits = defineEmits(['handleAdd'])
-
-//------------data--------
-const asShow = ref<Boolean>(true)
-const loading = ref<Boolean>(false)
-const flag = ref<Boolean>(false)
-const serviceId = ref<String>('')
-const rmFlag = ref<Boolean>(false)
-const rowTitle = ref<String>('')
-const page = ref<Number>(0)
-const noMore = ref<Boolean>(false)
-const tableCols = ref<Array>([]) //表头数据
-const tableData = ref<Array>([]) //表格数据
-const tableColsCopy = ref<Array>([]) //表头数据缓存
-const tableDataFilters = reactive<Object>({}) //表头数据缓存
-const filterValues = reactive<Object>({}) //表头-下拉-选中数据
-const tableDataCopy = ref<Array>([]) //缓存table数据
-const tableGroups = ref<Array>([]) //表格分组数据
-const colShowFilter = ref<String>('') //表头-下拉-箭头
-const spanArr = ref<Array>([]) //表格分组数据缓存
-const pos = ref<Number>(0) //表格分组计数
-const tableTitle = ref<String>('新增') //弹框标题
-const tableType = ref<String>('add') //弹框类型=新增/编辑
-let tableForm = reactive<Object>({}) //弹框表单
-const rmTitle = ref<String>('') //弹框-删除-标题
-const tableObj = reactive<Object>({}) //增/删/改数据缓存
-const tableOptions = reactive<Object>({}) //弹框-下拉数据缓存
-const tableArrs = ref<Array>([]) //重组table-表头下拉
-const roles = ref<Array>([]) //权限
-const tableOptionscp = reactive<Object>({})
-const tabledatacopy = reactive<Object>({})
-
-//------computed-----
-const dataTableContentStyle = computed(() => {
-  const style = {}
-  if (props.minHeight) {
-    style['min-height'] = props.minHeight
-  }
-  if (props.tableHeight) {
-    style['height'] = props.tableHeight
-  }
-  return style
-})
-
-//-------methods-------
-//表格-新增
-const handleAdd = () => {
-  if (props.isDialog) {
-    flag.value = true
-    tableType.value = 'add'
-    tableTitle.value = '新增'
-    rmFlag.value = true
-    tableForm = reactive({})
-  } else {
-    emits('handleAdd')
-  }
-}
-const tableRemove = () => {
-  console.log('删除')
-}
 </script>
 
 <style lang="scss" scoped>

+ 143 - 152
src/getMenu.ts

@@ -1,151 +1,143 @@
-import router, { asyncRoutes } from "@/router";
-import settings from "./settings";
-import { getToken, setToken, TokenKey } from "@/utils/auth";
-import NProgress from "nprogress";
-NProgress.configure({ showSpinner: false }); // NProgress Configuration
-import "nprogress/nprogress.css";
-import getPageTitle from "@/utils/getPageTitle";
-import { RouterRowTy } from "~/router";
-import { useUserStore } from "@/store/user";
-import { usePermissionStore } from "@/store/permission";
-import Layout from "@/layout";
-import { setTree } from "@/utils/validate";
-import * as _ from "lodash";
-const whiteList = ["/login", "/404", "/401"]; // no redirect whitelist
+import router, { asyncRoutes } from '@/router'
+import settings from './settings'
+import { getToken, setToken, TokenKey } from '@/utils/auth'
+import NProgress from 'nprogress'
+NProgress.configure({ showSpinner: false }) // NProgress Configuration
+import 'nprogress/nprogress.css'
+import getPageTitle from '@/utils/getPageTitle'
+import { RouterRowTy } from '~/router'
+import { useUserStore } from '@/store/user'
+import { usePermissionStore } from '@/store/permission'
+import Layout from '@/layout'
+import { setTree } from '@/utils/validate'
+import * as _ from 'lodash'
+const whiteList = ['/login', '/404', '/401'] // no redirect whitelist
 router.beforeEach(async (to: any, from, next: any) => {
   // start progress bar
-  if (settings.isNeedNprogress) NProgress.start();
+  if (settings.isNeedNprogress) NProgress.start()
   // set page title
-  document.title = getPageTitle(to.meta.title);
-  if (!settings.isNeedLogin) setToken(TokenKey, settings.tmpToken);
-  const hasToken: string | null = getToken(TokenKey);
+  document.title = getPageTitle(to.meta.title)
+  if (!settings.isNeedLogin) setToken(TokenKey, settings.tmpToken)
+  const hasToken: string | null = getToken(TokenKey)
 
-  const userStore = useUserStore();
-  const permissionStore = usePermissionStore();
+  const userStore = useUserStore()
+  const permissionStore = usePermissionStore()
   if (hasToken) {
-    if (to.path === "/login") {
+    if (to.path === '/login') {
       // if is logged in, redirect to the home page
-      next({ path: "/" });
+      next({ path: '/' })
     } else {
       //judge isGetUserInfo
-      const isGetUserInfo: boolean = permissionStore.isGetUserInfo;
+      const isGetUserInfo: boolean = permissionStore.isGetUserInfo
       if (isGetUserInfo) {
-        next();
+        next()
       } else {
         try {
-          let accessRoutes: any = [];
+          let accessRoutes: any = []
           if (settings.isNeedLogin) {
             // get user info
             // note: roles must be a object array! such as: ['admin'] or ,['developer','editor']
-            await userStore.getInfo();
-            const treeData: any = await userStore.getMenuInfo();
-            const menusArray = parseMenuItem(treeData);
-            const treeMenu = setTree(menusArray, "up_auth_id", "auth_id");
-            const dataMenu = _.unionBy(treeMenu, "auth_id");
-            const menus = parseMenu(dataMenu);
-            console.log(menus);
+            await userStore.getInfo()
+            const treeData: any = await userStore.getMenuInfo()
+            const menusArray = parseMenuItem(treeData)
+            const treeMenu = setTree(menusArray, 'up_auth_id', 'auth_id')
+            const dataMenu = _.unionBy(treeMenu, 'auth_id')
+            const menus = parseMenu(dataMenu)
+            console.log(menus)
             // const { roles }: any = await userStore.getInfo()
             // accessRoutes = await permissionStore.generateRoutes(roles)
-            accessRoutes = menus;
+            accessRoutes = menus
           } else {
-            accessRoutes = asyncRoutes;
+            accessRoutes = asyncRoutes
           }
           // setting constRouters and accessRoutes to vuex , in order to sideBar for using
-          permissionStore.M_routes(accessRoutes);
+          permissionStore.M_routes(accessRoutes)
           // dynamically add accessible routes
           //router4 addRoutes destroyed
           accessRoutes.forEach((route: RouterRowTy) => {
-            router.addRoute(route);
-          });
+            router.addRoute(route)
+          })
           //already get userInfo
-          permissionStore.M_isGetUserInfo(true);
+          permissionStore.M_isGetUserInfo(true)
           // hack method to ensure that addRoutes is complete
           // set the replace: true, so the navigation will not leave a history record
-          next({ ...to, replace: true });
+          next({ ...to, replace: true })
         } catch (err) {
-          console.log(err);
-          await userStore.resetState();
-          next(`/login?redirect=${to.path}`);
-          if (settings.isNeedNprogress) NProgress.done();
+          console.log(err)
+          await userStore.resetState()
+          next(`/login?redirect=${to.path}`)
+          if (settings.isNeedNprogress) NProgress.done()
         }
       }
     }
   } else {
     if (whiteList.indexOf(to.path) !== -1) {
-      next();
+      next()
     } else {
-      next(`/login?redirect=${to.path}`);
-      if (settings.isNeedNprogress) NProgress.done();
+      next(`/login?redirect=${to.path}`)
+      if (settings.isNeedNprogress) NProgress.done()
     }
   }
-});
+})
 
 function parseMenuItem(data) {
-  const menus: any = [];
-  data.map(item=>{
+  const menus: any = []
+  data.map((item) => {
     if (item.show_type == 1) {
-      if (item.up_auth_id == "1568") {
-        menus.push(
-          {
-            auth_id:item.auth_id,
-            up_auth_id:item.up_auth_id,
-            path : item.route_info,
-            name : item.auth_ident,
-            meta : {
-              title: item.auth_name,
-              elSvgIcon: item.show_icon ?? "Fold",
-              show_index: item.show_index,
-              qid: item.queryTemplateID,
-            },
-            component:Layout,
-            hidden : !item.is_show
-          }
-        )
+      if (item.up_auth_id == '1568') {
+        menus.push({
+          auth_id: item.auth_id,
+          up_auth_id: item.up_auth_id,
+          path: item.route_info,
+          name: item.auth_ident,
+          meta: {
+            title: item.auth_name,
+            elSvgIcon: item.show_icon ?? 'Fold',
+            show_index: item.show_index,
+            qid: item.queryTemplateID,
+          },
+          component: Layout,
+          hidden: !item.is_show,
+        })
       } else {
-        menus.push(
-          {
-            auth_id:item.auth_id,
-            up_auth_id:item.up_auth_id,
-            path : item.route_info,
-            name : item.auth_ident,
-            meta : {
-              title: item.auth_name,
-              elSvgIcon: item.show_icon ?? "Fold",
-              show_index: item.show_index,
-              qid: item.queryTemplateID,
-            },
-            component:{ render: () => h(resolveComponent("router-view")) },
-            hidden : !item.is_show
-          }
-        )
-      }
-    } else if (item.show_type == 2) {
-      menus.push(
-        {
-          auth_id:item.auth_id,
-          up_auth_id:item.up_auth_id,
-          path : item.route_info,
-          name : item.auth_ident,
-          meta : {
+        menus.push({
+          auth_id: item.auth_id,
+          up_auth_id: item.up_auth_id,
+          path: item.route_info,
+          name: item.auth_ident,
+          meta: {
             title: item.auth_name,
-            elSvgIcon: item.show_icon ?? "Fold",
+            elSvgIcon: item.show_icon ?? 'Fold',
             show_index: item.show_index,
             qid: item.queryTemplateID,
           },
-          component:() => import("./views" + item.file_link),
-          hidden : !item.is_show
-        }
-      )
+          component: { render: () => h(resolveComponent('router-view')) },
+          hidden: !item.is_show,
+        })
+      }
+    } else if (item.show_type == 2) {
+      menus.push({
+        auth_id: item.auth_id,
+        up_auth_id: item.up_auth_id,
+        path: item.route_info,
+        name: item.auth_ident,
+        meta: {
+          title: item.auth_name,
+          elSvgIcon: item.show_icon ?? 'Fold',
+          show_index: item.show_index,
+          qid: item.queryTemplateID,
+        },
+        component: () => import('./views' + item.file_link),
+        hidden: !item.is_show,
+      })
     }
-
   })
 
   return menus
 }
 
 function parseItem(item) {
-  console.log(item);
-  const menus: any = [];
+  const menus: any = []
   if (!item.children) {
     menus.push({
       path: item.route_info,
@@ -153,49 +145,49 @@ function parseItem(item) {
       name: item.auth_ident,
       meta: {
         title: item.auth_name,
-        elSvgIcon: item.show_icon ?? "Fold",
+        elSvgIcon: item.show_icon ?? 'Fold',
         show_index: item.show_index,
         qid: item.queryTemplateID,
       },
-    });
+    })
   } else if (item.children && item.children.length <= 1) {
+    const datas = item.children
+    const arrs: any = []
+    datas.forEach((p) => {
+      arrs.push({
+        path: p.route_info,
+        component: () => import('./views' + p.file_link),
+        name: p.auth_ident,
+        meta: {
+          title: p.auth_name,
+        },
+      })
+    })
     menus.push({
       path: item.route_info,
       component: Layout,
       name: item.auth_ident,
       meta: {
         title: item.auth_name,
-        elSvgIcon: item.show_icon ?? "Fold",
+        elSvgIcon: item.show_icon ?? 'Fold',
         show_index: item.show_index,
         qid: item.queryTemplateID,
       },
-      children: [
-        {
-          path: item.route_info,
-          component: () => import("@/views" + item.file_link),
-          name: item.auth_ident,
-          meta: {
-            title: item.auth_name,
-            elSvgIcon: item.show_icon ?? "Fold",
-            show_index: item.show_index,
-            qid: item.queryTemplateID,
-          },
-        },
-      ],
-    });
+      children: arrs,
+    })
   } else {
-    const datas = item.children;
-    const arrs: any = [];
-    datas.forEach((item, ci) => {
+    const datas = item.children
+    const arrs: any = []
+    datas.forEach((p) => {
       arrs.push({
-        path: item.route_info,
-        component: () => import("./views" + item.file_link),
-        name: item.auth_ident + ci,
+        path: p.route_info,
+        component: () => import('./views' + p.file_link),
+        name: p.auth_ident,
         meta: {
-          title: item.auth_name,
+          title: p.auth_name,
         },
-      });
-    });
+      })
+    })
     menus.push({
       path: item.route_info,
       component: Layout,
@@ -204,7 +196,7 @@ function parseItem(item) {
         show_index: item.show_index,
         qid: item.queryTemplateID,
         title: item.auth_name,
-        elSvgIcon: item.show_icon ?? "Fold",
+        elSvgIcon: item.show_icon ?? 'Fold',
       },
       children: arrs,
       // children: [
@@ -222,48 +214,47 @@ function parseItem(item) {
       //     children: arrs,
       //   },
       // ],
-    });
+    })
   }
-  return menus;
+  return menus
 }
 
 function parseMenu(arr: Array<any>) {
-  const menus: any =arr;
-  console.log(arr);
+  const menus: any = arr
   // arr.forEach((item) => {
-  //   const res = parseItem(item);
-  //   menus.push(res);
-  // });
-  const newMenus = menus.flat();
+  //   const res = parseItem(item)
+  //   menus.push(res)
+  // })
+  const newMenus = menus.flat()
   newMenus.push({
-    path: "/userManagement",
+    path: '/userManagement',
     component: Layout,
-    name: "UserManagement",
-    redirect: "/userManagement/permission",
+    name: 'UserManagement',
+    redirect: '/userManagement/permission',
     //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
-    meta: { title: "权限管理", elSvgIcon: "Avatar", show_index: 2 },
+    meta: { title: '权限管理', elSvgIcon: 'Avatar', show_index: 2 },
     children: [
       {
-        path: "/userManagement/permission",
-        name: "Permission",
-        meta: { title: "权限项管理", elSvgIcon: "Avatar" },
-        component: () => import("@/views/userManagement/permission/index.vue"),
+        path: '/userManagement/permission',
+        name: 'Permission',
+        meta: { title: '权限项管理', elSvgIcon: 'Avatar' },
+        component: () => import('@/views/userManagement/permission/index.vue'),
       },
     ],
-  });
+  })
   const allMenus = newMenus.length
     ? newMenus.sort((a, b) => a.meta.show_index - b.meta.show_index)
-    : [];
+    : []
   allMenus.push({
-    path: "/:pathMatch(.*)",
-    redirect: "/404",
+    path: '/:pathMatch(.*)',
+    redirect: '/404',
     hidden: true,
-  });
-  allMenus[0].redirect = allMenus[0].path;
-  allMenus[0].path = "/";
-  return allMenus;
+  })
+  allMenus[0].redirect = allMenus[0].path
+  allMenus[0].path = '/'
+  return allMenus
 }
 
 router.afterEach(() => {
-  if (settings.isNeedNprogress) NProgress.done();
-});
+  if (settings.isNeedNprogress) NProgress.done()
+})

+ 18 - 12
src/utils/validate.ts

@@ -163,6 +163,22 @@ export function translateDataToTreeAll(arr, parentKey, key) {
   return result
 }
 
+function setItem(arr, parentKey, key) {
+  arr.forEach((item) => {
+    const datas: any = []
+    if (item.children) {
+      item.children.some((p) => {
+        if (item[key] == p[parentKey]) {
+          datas.push(p)
+          item.children = datas
+        }
+      })
+      setItem(item.children, parentKey, key)
+    }
+  })
+  return arr
+}
+
 export function setTree(arr, parentKey, key) {
   const datas: any = []
   const all: any = []
@@ -182,16 +198,6 @@ export function setTree(arr, parentKey, key) {
         all.some((c) => item[key] == c[key])
       )
   )
-  res.forEach((item) => {
-    const datas: any = []
-    if (item.children) {
-      item.children.some((p) => {
-        if (item[key] == p[parentKey]) {
-          datas.push(p)
-          item.children = datas
-        }
-      })
-    }
-  })
-  return res
+  const result = setItem(res, parentKey, key)
+  return result
 }