03 2018 档案

摘要:this.$forceUpdate(); 阅读全文
posted @ 2018-03-21 17:11 米牙 阅读(120) 评论(0) 推荐(0)
摘要:1.其不起作用原因 1、父标签 position属性为relative;2、问题标签无position属性(不包括static);3、问题标签含有浮动(float)属性。 2.w3c一个挺有用的标签 <form> <fieldset> <legend>健康信息</legend> 身高:<input 阅读全文
posted @ 2018-03-19 16:14 米牙 阅读(112) 评论(0) 推荐(0)
摘要:1.时间搓转为时间 阅读全文
posted @ 2018-03-07 11:50 米牙 阅读(190) 评论(0) 推荐(0)
摘要://引入线状图import 'echarts/lib/chart/line' //echarts配置(挂载时导入图)creatChartFun(){ this.myChart = echarts.init(this.$refs.chartBox); let option = { tooltip: { trigger: 'axis', ... 阅读全文
posted @ 2018-03-06 14:33 米牙 阅读(2236) 评论(0) 推荐(0)
摘要:、指定复制目标 3.指定复制内容 4.剪切功能在html里 通过data-clipboard-action属性指定。 5、清理Clipboard对象: 阅读全文
posted @ 2018-03-06 09:42 米牙 阅读(520) 评论(0) 推荐(0)
摘要:let time=1493098173; getTime(time){ let date = new Date(time); let Y = date.getFullYear() + '-'; let M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth( 阅读全文
posted @ 2018-03-05 13:58 米牙 阅读(204) 评论(0) 推荐(0)