1.4.5 • Published 16 days ago

antanklayout_d v1.4.5

Weekly downloads
-
License
MIT
Repository
-
Last release
16 days ago

antanklayout

This component is only used in ANTANK SaaS, which will solve the scheduling problem between multiple systems and is suitable for the VUE2 environment

It is done in three steps: 1) 安装组件(install the component)

Installation

npm i antanklayout_d

Usage

2) 引入组件(introduce the component)

Ingest styles globally main.ts

import antanklayout_d from "antanklayout_d"
import 'antanklayout_d/lib/style.css'
app.use(antanklayout_d)

创建导入组件的页面(Create a Vue page "layout" layout.vue)

<template>
  <antanklayout>
    <transition appear name="fade-transform" mode="out-in">
      <keep-alive>
        <router-view :key="route" />
      </keep-alive>
    </transition>
  </antanklayout>
</template>

<script setup lang="ts" name="layout">
const route = computed(() => {return location.href})
// 注入刷新页面方法
const isRouterShow = ref(true);
const refreshCurrentPage = (val: boolean) => (isRouterShow.value = val);
provide("refresh", refreshCurrentPage);
</script>

<style scoped lang="scss">
</style>

3) 动态路由(adjust the routing)

第一种方法
const DynameicMenuList = []
//路由扁平化处理
const getFlatMenuList = (menuList) => {
  return menuList.flatMap(item => [item, ...(item.children ? getFlatMenuList(item.children) : [])]);
}
//过滤和动态添加路由
const setDynameicMenuListPath = (menuList) => {
  for (const item of getFlatMenuList(menuList)) {
    item.children && delete item.children
    router.addRoute("layout", item)
  }
}

const routes = [
  { path: '/', component: auth },
  {
    path: "/layout",//调度子系统路由
    name: "layout",
    component: () => import("@/views/layout/index.vue"),
    children: []
  }
]

// 创建路由实例并传递 `routes` 配置
const router = createRouter({
  // 使用 hash 模式。
  history: createWebHashHistory(),
  routes,
  strict: false,
  scrollBehavior: () => ({ left: 0, top: 0 })
})

setDynameicMenuListPath(account.menu)//动态添加路由


第二种方法,手动在路由表中把所有子路由的父级指向layout,然后正常添加路由即可
1.4.5

16 days ago

1.4.4

16 days ago

1.4.3

16 days ago

1.4.2

16 days ago

1.4.1

16 days ago

1.4.0

21 days ago

1.3.9

22 days ago

1.3.8

22 days ago

1.1.6

28 days ago

1.1.1

1 month ago

1.3.7

1 month ago

1.3.6

1 month ago

1.1.3

1 month ago

1.1.2

1 month ago

1.1.0

1 month ago

1.0.9

1 month ago

1.0.8

1 month ago

1.0.7

1 month ago

1.0.91

1 month ago

1.0.95

1 month ago

1.0.94

1 month ago

1.0.93

1 month ago

1.0.92

1 month ago

1.0.99

1 month ago

1.0.98

1 month ago

1.0.97

1 month ago

1.0.96

1 month ago

1.0.2

1 month ago

1.0.1

1 month ago

1.0.6

1 month ago

1.0.5

1 month ago

1.0.4

1 month ago

1.0.3

1 month ago

1.0.0

2 months ago

0.0.2

2 months ago

0.0.1

2 months ago