摘要: 1.什么是Mock.js? 生成随机数据,拦截Ajax请求。 通过随机数据,模拟各种场景;不需要修改既有代码,就可以拦截 Ajax 请求,返回模拟的响应数据;支持生成随机的文本、数字、布尔值、日期、邮箱、链接、图片、颜色等;支持支持扩展更多数据类型,支持自定义函数和正则。 优点是非常简单方便, 无侵 阅读全文
posted @ 2020-03-10 18:13 lilyliu329 阅读(2864) 评论(0) 推荐(0) 编辑
摘要: 1.charAt();返回在指定位置的字符,索引范围为从 0 到 length() - 1。 var str="abcdefghijklmn" var str2 = str.charAt(2); var str3 = str.charAt(8); console.log(str2); //c con 阅读全文
posted @ 2020-01-06 11:41 lilyliu329 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 做市区地图,最头疼的就是json文件,echarts官方只有到省份,没有到市区、县这次市区地区的json文件是通过 https://hxkj.vip/demo/echartsMap/ 得到的,做个记录方便以后用,也分享给大家~ 注:引用json文件,与引用js 文件调用方法不同 initChart( 阅读全文
posted @ 2019-12-23 15:22 lilyliu329 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 1.echarts 自定义标签 注:当设置visualMap的后,给覆盖regions单独定义的值(如果data 中没有regions的地区 则无妨,我这个是从data中删除'青岛',但是lable 无法正常显示了,如有哪位大神有好的方法,请赐教) 效果展示: 阅读全文
posted @ 2019-12-23 14:57 lilyliu329 阅读(18603) 评论(0) 推荐(0) 编辑
摘要: 2.scss 设置全局变量 先安装插件 sass-resources-loader 然后修改vue-cli的build/utils.js找到scss的加载设置: 修改为: 其中path.resolve需要引入待传入的scss文件,--dirname 表示当前目录,然后一步一步找到自己需要引入的文件 阅读全文
posted @ 2019-11-19 20:32 lilyliu329 阅读(4915) 评论(0) 推荐(0) 编辑
摘要: 1.新建dialog.js文件2.在main.js 中引入dialog.js import ‘./utils/dialog.js’3. 使用:<el-dialog v-dialogDrag></el-dialog> dialog.js文件代码 阅读全文
posted @ 2019-08-08 17:23 lilyliu329 阅读(1940) 评论(2) 推荐(0) 编辑
摘要: D3-Cloud是一个开源的词云实现,基于D3.js,使用HTML5 Canvas绘制输出,因为采用异步的方式处理,所以表现性能良好。 项目主页:https://www.jasondavies.com/wordcloud/ 下载地址:https://github.com/jasondavies/d3 阅读全文
posted @ 2019-08-08 17:18 lilyliu329 阅读(3375) 评论(0) 推荐(0) 编辑
摘要: 官网地址: http://mistic100.github.io/jQCloud/index.htmlgithub 地址: https://github.com/lucaong/jQCloud使用 阅读全文
posted @ 2019-06-20 16:59 lilyliu329 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 完美^_^ 阅读全文
posted @ 2019-06-18 15:06 lilyliu329 阅读(2527) 评论(0) 推荐(0) 编辑
摘要: git提交代码流程git status -- 查看当前仓库状态git add -- 添加到临时仓库git commit -m '注释' -- 添加到临时仓库git status -- 查看当前仓库状态git pull origin master -- 更新远程仓库代码git push origin 阅读全文
posted @ 2019-06-17 17:17 lilyliu329 阅读(220) 评论(0) 推荐(0) 编辑