vant:基于vant的radio组件封装自己的级联组件(Cascader)

一、效果

二、Cascader组件

js 复制代码
<template>
  <div class="demo">
    <div class="top">
      <ul>
        <li @click="one">回到顶级</li>
        <li v-for="item of parents" :key="item.value" @click="jump(item)">
          {{ item.text }}
        </li>
      </ul>
      <van-button type="primary" @click="submit" size="mini">确定</van-button>
    </div>
    <van-radio-group v-model="radio">
      <div v-for="item of list" :key="item.value">
        <van-radio :name="item.value"></van-radio
        ><span @click="next(item)">{{ item.text }}</span>
      </div>
    </van-radio-group>
  </div>
</template>
<script>
export default {
  data() {
    return {
      radio: "",
      tree: [
        {
          value: "一级 1",
          text: "一级 1",
          children: [
            {
              value: "二级 1-1",
              text: "二级 1-1",
              children: [
                {
                  value: "三级 1-1-1",
                  text: "三级 1-1-1",
                  children: [
                    { value: "四级 1-1-1-1", text: "四级 1-1-1-1" },
                    { value: "四级 1-1-1-2", text: "四级 1-1-1-2" },
                  ],
                },
                { value: "三级 1-1-2", text: "三级 1-1-2" },
              ],
            },
            {
              value: "二级 1-2",
              text: "二级 1-2",
              children: [
                { value: "三级 1-2-1", text: "三级 1-2-1" },
                { value: "三级 1-2-2", text: "三级 1-2-2" },
              ],
            },
          ],
        },
        {
          value: "一级 2",
          text: "一级 2",
          children: [
            {
              value: "二级 2-1",
              text: "二级 2-1",
              children: [
                { value: "三级 2-1-1", text: "三级 2-1-1" },
                { value: "三级 2-1-2", text: "三级 2-1-2" },
              ],
            },
            { value: "二级 2-2", text: "二级 2-2" },
          ],
        },
        {
          value: "一级 3",
          text: "一级 3",
          children: [
            { value: "二级 3-1", text: "二级 3-1" },
            { value: "二级 3-2", text: "二级 3-2" },
          ],
        },
      ],
      list: [], // 本级节点
      parents: [], // 所有的父级节点
    };
  },
  created() {
    this.list = this.tree;
  },
  methods: {
    submit() {
      console.log("选中的节点", this.radio);
    },
    one() {
      this.list = this.tree;
      this.parents = [];
      this.radio = "";
    },
    jump(item) {
      console.log(item.children, this.list);
      if (JSON.stringify(item.children) !== JSON.stringify(this.list)) {
        this.radio = "";
        this.list = item.children;
        // 设置面包屑导航
        const parents = this.getParents(this.tree, item.value);
        this.parents = parents.reverse();
      } else {
        alert("当前已经是" + item.text);
      }
    },
    next(item) {
      if (item.children) {
        this.radio = "";
        this.list = item.children;
        const parents = this.getParents(this.tree, item.value);
        this.parents = parents.reverse();
      } else {
        alert("已经是最后一级");
      }
    },
    // 找到所有父级
    getParents(tree, value) {
      for (const item of tree) {
        if (item.value === value) return [item];
        if (item.children) {
          const node = this.getParents(item.children, value);
          if (node !== undefined) return node.concat(item);
        }
      }
    },
  },
};
</script>
<style lang="less">
.demo {
  .top {
    display: flex;
    justify-content: space-between;
    > ul {
      display: flex;
      li {
        font-size: 10px;
        margin-right: 10px;
      }
    }
  }
  .van-radio-group {
    > div {
      > .van-radio {
        display: inline-block;
      }
    }
  }
}
</style>
相关推荐
CoolerWu31 分钟前
TRAE SOLO实战成功展示&总结:一个所见即所得的笔记软体
前端·javascript
Cassie燁38 分钟前
el-button源码解读1——为什么组件最外层套的是Vue内置组件Component
前端·vue.js
vx_bscxy32238 分钟前
告别毕设焦虑!Python 爬虫 + Java 系统 + 数据大屏,含详细开发文档 基于web的图书管理系统74010 (上万套实战教程,赠送源码)
java·前端·课程设计
北极糊的狐39 分钟前
Vue3 子组件修改父组件传递的对象并同步的方法汇总
前端·javascript·vue.js
spionbo39 分钟前
Vue3 前端分页功能实现的技术方案及应用实例解析
前端
AI绘画小3341 分钟前
Web 安全核心真相:别太相信任何人!40 个漏洞挖掘实战清单,直接套用!
前端·数据库·测试工具·安全·web安全·网络安全·黑客
7***n7543 分钟前
前端设计模式详解
前端·设计模式·状态模式
用户47949283569151 小时前
Vite 中 SVG 404 的幕后黑手:你真的懂静态资源处理吗?
前端·vite
未来之窗软件服务1 小时前
幽冥大陆(三十五)S18酒店门锁SDK go语言——东方仙盟筑基期
java·前端·golang·智能门锁·仙盟创梦ide·东方仙盟·东方仙盟sdk
卸任1 小时前
解密Flex布局:为什么flex:1仍会导致内容溢出
前端·css·flexbox