上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: 转自于:https://huaweicloud.csdn.net/638f116ddacf622b8df8e566.html?spm=1001.2101.3001.6650.9&utm_medium=distribute.pc_relevant.none-task-blog-2~default~Bl 阅读全文
posted @ 2023-02-09 10:48 Ao_min 阅读(698) 评论(0) 推荐(0) 编辑
摘要: <ele-chart ref="visitChart3" style="height: 80px" :option="totalparts" /> computed: { // 柱状图 totalparts() { return { tooltip: { trigger: 'axis', axisP 阅读全文
posted @ 2023-01-10 15:06 Ao_min 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 转自于:http://t.zoukankan.com/whiteprism-p-6548935.html crontab的几种常见用法:1、编辑一个文本文件,写上任务列表,然后运行crontab 文件名2、crontab -e,就可直接在vi界面中编辑任务列表3、crontab -l,查看本用户任务 阅读全文
posted @ 2023-01-10 15:05 Ao_min 阅读(473) 评论(0) 推荐(0) 编辑
摘要: option = { title: { text: '', textStyle: { color: '#17F0E3', }, }, tooltip: { trigger: 'item', formatter:function (params){ return`${params.name}${par 阅读全文
posted @ 2023-01-10 11:22 Ao_min 阅读(791) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://www.jianshu.com/p/68c83206ecfa 饼状图大小 radius: '45%', center: ['50%', '35%'], 图例的位置 legend: { orient: 'vertical', /* x: 'left', y: 'top', */ 阅读全文
posted @ 2023-01-10 11:20 Ao_min 阅读(5902) 评论(0) 推荐(1) 编辑
摘要: vue element 日期范围选择器限制:只能选今天之前的时间 || 只能选今天之后的时间 || 选取今天往后三天内 转自于:https://www.cnblogs.com/wwyxjjz/p/16922199.html 举例:只能选今天或者今天之后的时间(如下图) <el-date-picker 阅读全文
posted @ 2023-01-05 15:33 Ao_min 阅读(2485) 评论(0) 推荐(0) 编辑
摘要: el-tree /* 鼠标悬浮显示的颜色 */ #modelTree .el-tree-node__content:hover { background-color: #65a19f !important; } /* 默认节点的颜色 */ #modelTree .el-tree-node.is-cu 阅读全文
posted @ 2022-12-16 09:55 Ao_min 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 开启表格复选框选中行的颜色 :checkbox-config="{ highlight: true }" :row-config="{ isHover: true, isCurrent: true }" isHover: true开启鼠标悬浮颜色 isCurrent: true开启鼠标选中颜色 阅读全文
posted @ 2022-11-29 16:07 Ao_min 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 面试题中往往会遇到这样的笔试题,将以下数组对象合并相同值 var arr = [{ "name": "语文", "fraction": 80 }, { "name": "数学", "fraction": 70 }, { "name": "语文", "fraction": 50 }, { "name" 阅读全文
posted @ 2022-11-21 13:12 Ao_min 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 原数组对象: source:[{ a: 1, b: [{ c: 2 }, { d: 3 }], e: 4 }] 目标数组对象: target:[{ a: 1, b: [{ c: 2 }], e: 4 },{ a: 1, b: [{d: 3}], e: 4 }] let source = [{ a: 阅读全文
posted @ 2022-11-18 13:14 Ao_min 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页