上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 98 下一页
摘要: 申请百度统计账号,地址:https://tongji.baidu.com/sc-web/ 在vue项目的index.html文件中,加入两块js代码 <script> var _hmt = _hmt || []; </script> <script> var _hmt = _hmt || []; ( 阅读全文
posted @ 2020-11-17 13:03 JackieDYH 阅读(30) 评论(0) 推荐(0)
摘要: CSS3 filter(滤镜) 属性 filter: none | blur() | brightness() | contrast() | drop-shadow() | grayscale() | hue-rotate() | invert() | opacity() | saturate() 阅读全文
posted @ 2020-11-17 10:10 JackieDYH 阅读(22) 评论(0) 推荐(0)
摘要: 键盘已做过处理第一位只能是省份简称,第二位只能输入字母,第三位以后可以输入数字加字母的组合,输入完成后有正则方法校验车牌号的合法性。高效率车牌号输入键盘,大大提升用户体验,增强用户输入车牌号的真实性 组件源码 html: <view wx:if="{{isShow}}" class="vehicle 阅读全文
posted @ 2020-11-12 18:20 JackieDYH 阅读(184) 评论(0) 推荐(1)
摘要: 无限追加用户输入框 <view class="box" hidden="{{!isren}}" wx:for="{{renlists}}" wx:key="*this"> <view class="txt bgtxt"> <text>随行人姓名:</text> <input class="weui- 阅读全文
posted @ 2020-11-12 13:41 JackieDYH 阅读(37) 评论(0) 推荐(0)
摘要: 全局样式里面添加如下class样式,在需要的地方直接添加class就可以了 /*也可以设置成 * 选取全部*/ .no-select { -webkit-touch-callout: none; /*系统默认菜单被禁用 iOS Safari*/ -webkit-user-select: none; 阅读全文
posted @ 2020-11-09 13:46 JackieDYH 阅读(31) 评论(0) 推荐(0)
摘要: 在Vue项目中,使用ElementUI表格组件展示数据时,如果某一个列数值长度超过列宽,会默认换行,造成显示不美观 解决方法 Element-UI文档,可发现show-overflow-tooltip列属性可实现列内容过长被隐藏时显示tooltip的功能 注意 show-overflow-toolt 阅读全文
posted @ 2020-11-05 10:55 JackieDYH 阅读(257) 评论(0) 推荐(0)
摘要: 效果图->datav 组件使用demo <template> <div class="center-cmp"> <dv-active-ring-chart class="ccmc-middle" :config="config"/> </div> </template> <script> expor 阅读全文
posted @ 2020-11-04 17:34 JackieDYH 阅读(195) 评论(0) 推荐(0)
摘要: 制作不需坐标轴的echarts图 示例代码 在线测试 option = { xAxis: { type: "category", boundaryGap: false, show:false, // data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", " 阅读全文
posted @ 2020-11-03 16:31 JackieDYH 阅读(152) 评论(0) 推荐(0)
摘要: 隐藏坐标轴: axisLine:{ //y轴 show:false }, 隐藏网格线: splitLine: { //网格线 show: false }, 隐藏刻度线: axisTick:{ //y轴刻度线 show:false }, y轴字体颜色: axisLabel : { textStyle: 阅读全文
posted @ 2020-11-03 16:15 JackieDYH 阅读(28) 评论(0) 推荐(0)
摘要: 效果图 效果代码 option = { textStyle: { // fontSize: arr.initHeight, color: 'black'//字体颜色 }, tooltip: { trigger: "axis", textStyle: { // fontSize: arr.initHe 阅读全文
posted @ 2020-11-03 15:41 JackieDYH 阅读(113) 评论(0) 推荐(0)
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 98 下一页