2023年2月16日
摘要: 1、将需要传输的数据使用 JSON.stringify() 转译成字符串形式进行传输 2、在需要接收的页面使用 JSON.parse() 将数据格式再转回来即可使用,且刷新回归后不变 阅读全文
posted @ 2023-02-16 19:27 好大的虫子 阅读(169) 评论(0) 推荐(0) 编辑
  2023年2月14日
摘要: 当video标签使用controls属性的时候。pc电脑会显示三个点,可以利用controlslist属性进行设置 1、nodownload: 不要下载按钮2、nofullscreen: 不要全屏按钮3、noremoteplayback: 不要远程回放4、disablePictureInPictur 阅读全文
posted @ 2023-02-14 16:03 好大的虫子 阅读(591) 评论(0) 推荐(0) 编辑
  2022年11月22日
摘要: 1、video 属性 <!-- video 不支持 IE8及以下版本浏览器,支持三种视频格式:MP4,WebM 和 Ogg --> <video src="test.mp4" controls width="400" height="300"></video> <!-- 禁止下载 --> <vide 阅读全文
posted @ 2022-11-22 09:19 好大的虫子 阅读(587) 评论(0) 推荐(0) 编辑
摘要: created() { //取前一天时间 let reTime = this.getDay(-1, 7200000); //转化为毫秒 let jugdeTime = Date.parse(reTime); console.log('昨天:', this.getDay(-1, 7200000)) c 阅读全文
posted @ 2022-11-22 09:06 好大的虫子 阅读(291) 评论(0) 推荐(0) 编辑
  2022年11月21日
摘要: 获取系统时间 new Date() 打印系统时间 console.log(new Date()) //Mon Nov 21 2022 17:21:53 GMT+0800 (中国标准时间) 系统时间转换格式 console.log(new Date().toLocaleString()) //2022 阅读全文
posted @ 2022-11-21 17:34 好大的虫子 阅读(76) 评论(0) 推荐(0) 编辑
  2022年10月10日
摘要: 1.查看当前分支: $ git branch 2.查看所有分支,包含远程分支 : $ git branch -a 3.新建分支: $ git checkout -b name(分支名称) 4.推送本地分支到远程分支(远程分支与本地分支同名): $ git push origin name:name 阅读全文
posted @ 2022-10-10 10:01 好大的虫子 阅读(26) 评论(0) 推荐(0) 编辑
  2022年9月30日
摘要: // 指定颜色 itemStyle: { color: function (params) { var colorarrays = ["#990033", "#ff66cc", "#3300cc", "#ffcc00", "#339933", "#66cccc"] return colorarray 阅读全文
posted @ 2022-09-30 10:16 好大的虫子 阅读(389) 评论(0) 推荐(0) 编辑
  2022年9月29日
摘要: 添加 :ref="val.id" 获取 console.log(this.$refs[val.id]) 获取元素的坐标信息 console.log(this.$refs[val.id][0].getBoundingClientRect()) 阅读全文
posted @ 2022-09-29 15:21 好大的虫子 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 将series数组中的 stack: 'Total' 注释或删除掉即可 阅读全文
posted @ 2022-09-29 10:43 好大的虫子 阅读(319) 评论(0) 推荐(0) 编辑
  2022年9月28日
摘要: :style="{'width':item.itemValue}" 阅读全文
posted @ 2022-09-28 15:58 好大的虫子 阅读(168) 评论(0) 推荐(0) 编辑