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