IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 对element的面包屑进行二次封装,可以实现在一个页面里或者一个弹窗里达到路由的效果,实现点击进入下级,点击上级返回。element ui的面包屑不使用路由在单个实现跳转 -> 正文阅读

[JavaScript知识库]对element的面包屑进行二次封装,可以实现在一个页面里或者一个弹窗里达到路由的效果,实现点击进入下级,点击上级返回。element ui的面包屑不使用路由在单个实现跳转

在一个单页面或者一个弹窗里面,不用路由来实现element ui的面包屑的跳转等功能
对element ui 的面包屑breadcrumb进行二次封装,写成一个组件,你可以直接复制粘贴,就是一个完整的组件。

引入组件:

//父组件中引入

import Mybreadcrumb from "../mybreadcrumb.vue";

父组件中引入写上

<Mybreadcrumb
        v-model="innerPath"
        :label-args="{ title2: active.title2, title3: active.title3 }"
        :showInRoot="showInRoot"
        :path="{
          label: '财务报销费用',
          key: '1',
          children: [
            {
              label: '{title2}',//动态标题
              key: '2',
              children: [
                {
                  label: '{title3}', //动态标题
                  key: '3',
                },
              ],
            },
          ],
        }"
      ></Mybreadcrumb>

//这里需要引入需要跳转的子组件

<div style="height: calc(100% - 45px)">
      //一级页面
      <Indexpage
        v-if="innerPath == 1"
        @sentIndexFn="sentIndexFn"
        style="height: 100%"
      ></Indexpage> 
      //二级页面
      <Detail
        v-else-if="innerPath == 2"
        :detailData="detailData"
        style="height: 100%"
      ></Detail>
      //三级.....
    </div>
**参数配置**
data(){
 return{
  // 层级设置
      showInRoot: true,//是否显示第一个标题,是根节点
      innerPath: 1,
      active: { title2: "", title3: "" }, //这是动态标题,值可以在某件事件触发时,赋值
}

下面是组件

这里是组件html

<template >
  <div class="inner-breadcrumb" v-show="showInRoot || value!=root" style="height:40px;padding:0 15px;">
    <el-breadcrumb class="breadcrumb" separator=">" style="float:left;">
      <el-breadcrumb-item v-for="(node, index) in pathArr" :key="index" style="line-height:40px">
        <span v-if="node.disable && index<pathArr.length-1" class="disable" :class="{'last':index==pathArr.length-1}">{{parse(node.label)}}</span>
        <a v-else :class="{'last':index==pathArr.length-1}" href="javascript:;" @click="change(node.key,node.disable)">{{parse(node.label)}}</a>
      </el-breadcrumb-item>
    </el-breadcrumb>
    <el-button v-if="showBack&&pathArr.length>1" style="float:right;padding:0;" type="text" @click="back">返回上一级</el-button>
  </div>
</template>

下面时组件参数及配置:

export default {
  name: "InnerBreadcrumb",
  props: {
    value: {
      type: String,
    },
    path: {
      type: Object,
      required: true,
      // 形如:
      default: {
        // label: "一级页面",
        // key: "1",
        // children: [
        //   {
        //     key: "2A",
        //     label: "二级页面A"
        //   },
        //   {
        //     key: "2B",
        //     label: "二级页面B",
        //     disable: true,
        //     children: [
        //       {
        //         key: "3",
        //         label: "三级页面"
        //       }
        //     ]
        //   }
        // ]
      }
    },
    showBack:{ // 是否显示返回上一级
      type: Boolean,
      default: false
    },
    showInRoot: { // 是否在根目录显示
      type: Boolean,
      default: false
    },
    labelArgs:{ // 用于回显的参数 例如在 label 中使用 '设置:{info}',在 labelArgs传入{info:'用户信息'} 即可
      type: Object,
      default: {}
    }
  },
  data() {
    return {
      pathMap: null,
      root: null,
      pathArr: []
    };
  },
  watch: {
    value(val) {
      this.buildPath(val);
    }
  },
  methods: {
    init() {
      let path = this.path;
      this.root = path.key;
      let pathMap = {};
      // 遍历path树,给每个节点加上父节点的key,parentKey空则是根节点
      let traverse = (node, parentKey) => {
        node.parentKey = parentKey;
        pathMap[node.key] = node;
        if (node.children && node.children.length) {
          for (let i = 0; i < node.children.length; i++) {
            const child = node.children[i];
            traverse(child, node.key);
          }
        }
      };
      traverse(path);
      this.pathMap = pathMap;
    },
    buildPath(key) {
      if(!key)
        return;
      // 建立路径数组
      let node = this.pathMap[key];
      if (!node) {
        // console.warn("InnerBreadcrumb 找不到key:" + key);
        return;
      }
      let arr = [];
      while (node) {
        arr.push(node);
        node = this.pathMap[node.parentKey];
      }
      arr.reverse();
      this.pathArr = arr;
    },
    parse(label){
      const reg = /\{[^\}]+\}/g;
      let labelCopy = label; // 复制一份
      let match;
      /* match的值
        0: "{abc}"
        groups: undefined
        index: 3
        input: "123{abc},{b}"
      */
      while((match = reg.exec(label))!=null){
        let key = match[0].substr(1,match[0].length-2);
        let value = this.labelArgs[key];
        if (value){
          // console.warn('InnerBreadcrumb 找不到参数:', key);
          labelCopy = labelCopy.replace(match[0],value);
        }
      }
      return labelCopy;
    },
    change(key, disable) {
      if (disable) return;
      // console.log(key);
      this.$emit("input", key);
    },
    back(){
      if(this.pathArr && this.pathArr.length>1){
        for (let i = this.pathArr.length-2; i >=0; i--) {
          const node = this.pathArr[i];
          if (!node.disable){
            this.change(node.key);
            return;
          }
        }
      }
      console.warn('InnerBreadcrumb 没有非disalbe的上级路径');
    }
  },
  created() {},
  mounted() {
    this.init();
    this.buildPath(this.value);
  }
};

这里是组件样式,可更改

<style lang="scss">
:root .inner-breadcrumb {
  // background-color:#e8e8e8 ;
  .breadcrumb{
    span {
      font-weight: normal;
      color: #0D867F!important;
    }
    a {
      font-weight: normal;
      color: #0D867F!important;
      color: #0D867F!important;
    }
    a:hover{
      color: #3d9e99!important;
    }
    .last{
      font-weight: bold!important;
      cursor: default!important;
      color: #0D867F!important;
    }
    .disable{
      cursor: default!important;
      color: #0D867F!important;
    }
  }
  
}
</style>
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:14:27  更:2022-04-09 18:16:42 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:06:14-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码