Vue 纯 css 编写鱼骨图

Vue 纯 css 编写鱼骨图

参考文章@1忘记
参考文章1@会点 php 的前端小渣渣 (我是在此基础上进行二改的)

二改组件

粘贴下来到手直接用。

<template><div class="fishbone scroll"><div class="content"><el-row type="flex" class="top-bone"><divclass="item-bone bone-top"v-for="(item, index) in Object.keys(arrList)":key="index"><ul class="item-bone-children" v-if="index % 2 == 0"><div class="textTop"><div class="title_text">{{ textObj[item] }}</div></div><liv-for="(ele, i) in arrList[item]"class="children-item":key="i"><div class="top_portLine"></div><div class="title"><div class="edit_button"><iclass="iconfont el-icon-plus fish_edit"@click="addBone(item, index)"></i><iclass="iconfont el-icon-minus fish_edit"@click="delBone(item, i)"></i></div><el-input size="mini" v-model="ele.value"></el-input></div></li></ul></div></el-row><div class="center-line"><div class="textCenter">{{ text }}</div></div><el-row type="flex" class="bottom-bone"><divclass="item-bone"v-for="(item, index) in Object.keys(arrList)":key="index"><ul class="item-bone-children" v-if="index % 2 != 0"><div v-if="index % 2 != 0" class="textBottom"><div class="title_text">{{ textObj[item] }}</div></div><liv-for="(ele, i) in arrList[item]":key="i"class="children-item1"><div class="bottom_portLine"></div><div class="edit_button"></div><div class="title"><div class="edit_button"><iclass="iconfont el-icon-plus fish_edit"@click="addBone(item, index)"></i><iclass="iconfont el-icon-minus fish_edit"@click="delBone(item, i)"></i></div><el-input size="mini" v-model="ele.value"></el-input></div></li></ul></div></el-row></div></div>
</template>
<script>
export default {data() {return {text: "鱼骨图",strip_num: 6, // 根数wing_num: 1, // 翅数arrList: {a: [{ value: "内容a", id: "1", flag: true }],b: [{ value: "内容b", id: "1", flag: true }],c: [{ value: "内容c", id: "1", flag: true }],d: [{ value: "内容d", id: "1", flag: true }],e: [{ value: "内容e", id: "1", flag: true }],f: [{ value: "内容f", id: "1", flag: true }],},textObj: {a: "标题a",b: "标题b",c: "标题c",d: "标题d",e: "标题e",f: "标题f",},};},mounted() {},methods: {delBone(key, index) {this.arrList[key].splice(index, 1);console.log(key, index);},addBone(key, index) {this.arrList[key].push({ value: index });},},
};
</script>
<style lang="scss" scoped>
.fishbone {min-height: 300px;height: 100%;position: relative;$bnoe-color: #dcdfe6;max-width: 100%;// padding: 50px;overflow: auto;.textCenter {padding: 5px;position: absolute;top: -12px;height: 25px;line-height: 25px;text-align: center;background: #70b603;font-weight: bold;right: -29px;}.textBottom {position: absolute;bottom: -27px;right: -27px;transform: skewx(15deg);::v-deep .el-button {padding: 2px;}}.textTop {position: absolute;top: -27px;right: -27px;transform: skewx(-45deg);::v-deep .el-button {padding: 3px;}}.title_text {border-radius: 5px;padding: 3px;background: #70b603;width: fit-content;height: 25px;text-align: center;font-weight: bold;line-height: 25px;}.leftIcon {border: 6px solid transparent;border-right: 6px solid $bnoe-color;}.rightIcon {border: 6px solid transparent;border-left: 6px solid $bnoe-color;}.content {// padding-left: 20px;width: 60%;height: 100%;position: absolute;top: 50%;left: 20%;}.center-line {color: white;position: relative;// width: calc(100% + 200px);width: 100%;height: 1px;background-color: $bnoe-color;}.top-bone,.bottom-bone {.item-bone {color: white;position: relative;display: flex;margin: 0 5px;}.item-bone-children-right {border: none !important;margin: 0 !important;padding: 0;}.children-item {position: relative;margin: 0 20px 20px 0;.top_portLine {width: 25px;border-bottom: 1px solid $bnoe-color;position: absolute;right: -25px;top: 50%;}}.item-bone-children {position: relative;height: 100%;border-right: 2px solid $bnoe-color;transform: skewX(45deg);margin: 0 10px;list-style-type: none;padding: 0;padding-right: 5px;.text {text-align: right;padding-right: 20px;transform: skewx(-45deg);font-size: 13px;width: 100%;line-height: 30px;white-space: nowrap;color: white;}.title {position: relative;text-align: center;transform: skewX(-45deg);font-size: 16px;font-weight: bolder;line-height: 35px;color: white;.edit_button {display: flex;// flex-direction: column;width: fit-content;position: absolute;top: -20px;left: 0;}}}}.bottom-bone {bottom: 0;.item-bone-children {position: relative;transform: skewX(-15deg);.text {transform: skewX(15deg);}.title {transform: skewX(15deg);}.children-item1 {margin: 20px 20px 0 0;.bottom_portLine {width: 25px;border-bottom: 1px solid $bnoe-color;position: absolute;right: -25px;top: 50%;}position: relative;}.children-item2 {position: relative;&:not(:last-child) {border-bottom: 1px solid $bnoe-color;&:after {position: absolute;left: -7px;bottom: -5px;content: " ";border: 5px solid transparent;border-right: 5px solid black !important;transform: skewx(45deg);}}}}}.fish_edit {padding: 2px;margin-right: 10px;color: #999;display: inline-block;width: 15px;height: 15px;text-align: center;line-height: 15px;border: 1px solid #797979;border-radius: 5px;cursor: pointer;}
}
.scroll {box-sizing: border-box;&::-webkit-scrollbar {width: 8px;height: 8px;background-color: #e7eaf0;}&::-webkit-scrollbar-thumb {border-radius: 4px;background-color: #e1e1e2;}&::-webkit-scrollbar-track {background-color: #fff;}&::-webkit-scrollbar-button {background-color: red;display: none;}
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/63150.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

网络编程套接字(3): 简单的TCP网络程序

文章目录 网络编程套接字(3)4. 简单的TCP网络程序4.1 服务端创建(1) 创建套接字(2) 绑定端口(3) 监听(4) 获取新连接(5) 处理读取与写入 4.2 客户端创建(1)连接服务器 4.3 代码编写(1) v1__简单发送消息(2) v2_多进程版本(3) v3_多线程版本(4) v4_线程池版本 网络编程套接字(3)…

leetcode原题: 生存人数

题目&#xff1a; 给定 N 个人的出生年份和死亡年份&#xff0c;第 i 个人的出生年份为 birth[i]&#xff0c;死亡年份为 death[i]&#xff0c;实现一个方法以计算生存人数最多的年份。 你可以假设所有人都出生于 1900 年至 2000 年&#xff08;含 1900 和 2000 &#xff09;…

【位运算】leetcode面试题:消失的两个数字

一.题目描述 消失的两个数字 二.思路分析 本题难度标签是困难&#xff0c;但实际上有了只出现一次的数字iii这道题的铺垫&#xff0c;本题的思路还是很容易想到的。 温馨提示&#xff1a;阅读本文前可以先查看我的【位运算】专栏的第一篇文章&#xff0c;其中包含位运算这类…

如何用selenium或pyppeteer来启动多个AdsPower窗口

前言 本文是该专栏的第57篇,后面会持续分享python爬虫干货知识,记得关注。 关于selenium或pyppeteer来启动打开adspower浏览器的方法,笔者在本专栏前面有详细介绍过,感兴趣的同学可往前翻阅《如何用selenium或pyppeteer来链接并打开指纹浏览器AdsPower》,文章内容包含完整…

封装动态表单组件

技术栈&#xff1a;vue2 js webpack 需求&#xff1a; 利用数据渲染表单&#xff0c;实现代码的精简化及效率的提升。 效果图&#xff1a; 封装的组件&#xff1a; <div v-if"formConfig"><el-formv-bind"$attrs"ref"formDom":model…

Spring Cloud Kubernetes:在Kubernetes中部署和管理微服务

Spring Cloud Kubernetes&#xff1a;在Kubernetes中部署和管理微服务 一、简介1. Spring Cloud Kubernetes2. 在Kubernetes中部署和管理微服务 二、概述1 Kubernetes概述2 Spring Cloud概述3 Spring Cloud Kubernetes概述 三、搭建Spring Cloud Kubernetes环境1 Kubernetes搭建…

new/delete与malloc/free的区别

new/delete与malloc/free的区别 new、delete是C中的操作符&#xff0c;而malloc、free是标准库函数。 new 和 delete 是类型安全的&#xff0c;它们能够根据要分配的对象类型进行内存分配和释放&#xff0c;并调用相应的构造函数和析构函数。而 malloc 和 free 则是无类型的&am…

【LeetCode-中等题】240. 搜索二维矩阵 II

文章目录 题目方法一&#xff1a;暴力双for查找方法二&#xff1a;二分查找&#xff0c;对每二维数组进行拆分&#xff0c;一行一行的进行二分查找方法三&#xff1a;列倒序Z字形查找 题目 方法一&#xff1a;暴力双for查找 public boolean searchMatrix(int[][] matrix, int …

Android DataBinding 基础入门(学习记录)

目录 一、DataBinding简介二、findViewById 和 DataBinding 原理及优缺点1. findViewById的优缺点2. DataBinding的优缺点 三、Android mvvm 之 databinding 原理1. 简介和三个主要的实体DataViewViewDataBinding 2.三个功能2.1. rebind 行为2.2 observe data 行为2.3 observe …

探索隧道ip如何助力爬虫应用

在数据驱动的世界中&#xff0c;网络爬虫已成为获取大量信息的重要工具。然而&#xff0c;爬虫在抓取数据时可能会遇到一些挑战&#xff0c;如IP封禁、访问限制等。隧道ip&#xff08;TunnelingProxy&#xff09;作为一种强大的解决方案&#xff0c;可以帮助爬虫应用更高效地获…

MYSQL数据库恢复(误删操作)

1.安装依赖 pip3 install PyMySQL0.7.8 pip3 install wheel0.24.0 pip3 install mysql-replication0.9 mysql8的版本问题&#xff0c;安装对应的binlog2sql工具版本 pip3 uninstall PyMySQL pip3 install PyMySQL0.9.3 2.Binlog2sql的使用 2.1解压binlog2sql.zip到任意位…

Ceph IO流程及数据分布

1. Ceph IO流程及数据分布 1.1 正常IO流程图 步骤&#xff1a; client 创建cluster handler。client 读取配置文件。client 连接上monitor&#xff0c;获取集群map信息。client 读写io 根据crshmap 算法请求对应的主osd数据节点。主osd数据节点同时写入另外两个副本节点数据。…

Node.js 应用的御用品: Node.js 错误处理系统

开发中&#xff0c;有些开发者会积极寻求处理错误&#xff0c;力求减少开发时间&#xff0c;但也有些人完全忽略了错误的存在。正确处理错误不仅意味着能够轻松发现和纠正错误&#xff0c;而且还意味着能够为大型应用程序开发出稳健的代码库。 特别是对于 Node.js 开发人员&am…

由Android10适配到Android12时遇到相关编译失败问题

最近Android系统各大应用商店联合发出公告&#xff0c;处于个人隐私安全考虑&#xff0c;强制APP适配到Android 11及以上版本。下面是其中应用市场的公告&#xff08;顺带提醒没适配的同学&#xff09;&#xff1a; 适配前的开发环境 名称版本Android studioGiraffe | 2022.3…

【板栗糖GIS】——360浏览器的下载图标隐藏在内部不方便,怎么修改

目录 1. 设置前的本来样子 2. 登录360的皮肤中心 3. 使用se13的经典皮肤 最近edge浏览器最近使用bilibili和notion都非常卡&#xff0c;时不时崩溃&#xff0c;不得不换浏览器使用&#xff0c;试来试去360浏览器最得我心&#xff0c;只不过广告太多&#xff0c;调教也是花了…

gitlab升级

1.下载需要的版本 wget -c https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.7.6-ce.0.el7.x86_64.rpm --no-check-certificate gitlab-ce-15.4.6-ce.0.el7.x86_64.rpm gitlab-ce-15.7.6-ce.0.el7.x86_64.rpm gitlab-ce-15.9.7-ce.0.el7.x86_64.rpm g…

小文智能GPT助手介绍

如何使用小文交互的GPT助手&#xff0c;让AI更加智能&#xff0c;适用更多场景&#xff1f; 在小文智能最新推出的4.0版本&#xff0c;有一个新功能&#xff0c;叫做GPT助手。GPT助手&#xff0c;顾名思义&#xff0c;即在小文智能的场景中&#xff0c;接入ChatGPT&#xff0c…

报错(! [rejected] master -> master (fetch first))解决方案

情况&#xff1a;本地已有的前端项目&#xff0c;想利用git上传到gitee已有仓库上去&#xff0c;但是报错! [rejected] master -> master (fetch first)&#xff1b;其报错信息如下&#xff1a; ! [rejected] master -> master (fetch first) error: failed to push some…

MyBatis-Plus代码生成

引入依赖 <dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.5.3.2</version> </dependency> <dependency><groupId>com.baomidou</groupId><…

最新智能AI系统ChatGPT网站程序源码+详细图文搭建教程/支持GPT4/WEB-H5端+微信公众号版源码

一、AI系统 如何搭建部署AI创作ChatGPT系统呢&#xff1f;小编这里写一个详细图文教程吧&#xff01;SparkAi使用Nestjs和Vue3框架技术&#xff0c;持续集成AI能力到AIGC系统&#xff01; 1.1 程序核心功能 程序已支持ChatGPT3.5/GPT-4提问、AI绘画、Midjourney绘画&#xf…