Fork me on GitHub
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页
摘要: exclude表示不缓存这个界面,注意 QRCode是组件的名字 export default { name:"QRCode", components: { nqr }, 使用 setInterval一定要销毁,不然会一直执行 created() { this.getData(); var _this = this... 阅读全文
posted @ 2019-03-11 09:40 欢欢11 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 1.属性选择器 2.伪类选择器 :link 向未被访问的超链接添加样式 :visited 向已被访问的超链接添加样式 :active 向被激活的元素添加样式 :hover 当鼠标悬停至元素上方是,向该元素添加样式 :focus 当元素获取焦点时,向该元素添加样式 3.伪元素选择器 :first-le 阅读全文
posted @ 2019-03-08 09:33 欢欢11 阅读(135) 评论(0) 推荐(0) 编辑
摘要: align-content 和 align-items : 1:共同点:它们对齐方向为交叉轴 2:不同点:align-content 应用于为 多行 而 align-items:应用于单行。 阅读全文
posted @ 2019-03-08 09:19 欢欢11 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 1.npm install vue-quill-editor --save 2.npm install quill --save 3.封装成子组件 {{content}} reset to abc 阅读全文
posted @ 2019-03-07 16:40 欢欢11 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: 使用: 阅读全文
posted @ 2019-03-06 15:11 欢欢11 阅读(367) 评论(0) 推荐(0) 编辑
摘要: private IQueryable SelectOrScrrenMember(GetMemberInput input) { string[] userDefinedFilter = null; if (!input.UserDefinedFilter.IsNullOrWhiteSpace()) ... 阅读全文
posted @ 2019-03-04 11:13 欢欢11 阅读(688) 评论(0) 推荐(0) 编辑
摘要: let curmonth; var curDay=this.getday(this.year,this.month); if(this.month >=10) { var curDate = this.year + "-" + this.month + "-" + "01"; var toDate= 阅读全文
posted @ 2019-03-01 15:14 欢欢11 阅读(742) 评论(0) 推荐(0) 编辑
摘要: 1.npm install --save mescroll.js 2. 阅读全文
posted @ 2019-02-28 15:47 欢欢11 阅读(816) 评论(0) 推荐(0) 编辑
摘要: 1.把手机号码中间四位替换成* var ciphertext = mobile.substr(0, 3) + '****' + mobile.substr(7); 2.常用的手机号码验证 checkPhone: function(phoneNumber) { let str = /^1\d{10}$/; if (str.test(phon... 阅读全文
posted @ 2019-02-27 10:48 欢欢11 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.concat() 连接两个或更多的数组,并返回一个新的数组。注意:该方法不会改变原数组 var arry1=["李四",“王二”]; var arry2=['赵柳',“李旺”]; var arry3=arry1.concat(arry2); console.log(arry3) //输出:李四, 阅读全文
posted @ 2019-02-26 09:58 欢欢11 阅读(345) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页