摘要: webpack默认的打包是production模式,并且只内置了production,development,2种模式,默认production打包会执行压缩; 网上很多多环境打包是直接配置 NODE_ENV = “xxx”,这样执行打包虽然会成功,但是没有压缩,不是我们想要的效果,说通俗些我们想要 阅读全文
posted @ 2022-01-05 10:18 米牙 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 可动折线图 建议:让产品、ui设计结合多张图做联动渲染,这个可动折线图才有意义 效果预览 具体实现 实现:线和值都是css定位到画布,核心就是设置定时器并通过获取tooltip点击事件获取到点击位置的dataIndex,并且通过echarts的api:convertToPixel,可转换坐标系上的点 阅读全文
posted @ 2021-07-20 14:28 米牙 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: echarts地图配置 仓库地址: 注:建议使用echarts绘制地图安装4.9版本的,5.x的select选中指令能调到你头秃 yarn remove echarts //卸载echarts yarn add echarts@4.9.0 --save //安装4.9版本echarts 地图贴图、点 阅读全文
posted @ 2021-07-20 14:27 米牙 阅读(841) 评论(0) 推荐(0) 编辑
摘要: Centos7开放及查看端口 参考:https://www.cnblogs.com/heqiuyong/p/10460150.html 1、开放端口 firewall-cmd --zone=public --add-port=5672/tcp --permanent # 开放5672端口 firew 阅读全文
posted @ 2021-07-09 15:13 米牙 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 前端生成目录结构 全局安装插件mddir cnpm install mddir -g 运行命令mddir mddir 结果生成一个文件: 生成的项目树 |-- undefined |-- .eslintrc.js |-- .gitignore |-- babel.config.js |-- pack 阅读全文
posted @ 2021-07-06 13:46 米牙 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 如下配置可以解决热更新失效问题 修改package.json文件的dev字段,将: "scripts": { "dev": "vuepressdev docs", ... }, 改为: "scripts": { "dev": "vuepressdev docs --temp .temp", ... 阅读全文
posted @ 2021-07-01 19:27 米牙 阅读(1518) 评论(1) 推荐(0) 编辑
摘要: 高德地图api调用说明 githab地址:https://github.com/miaDemos/gd_map_api.git 参考文档:https://lbs.amap.com/api/javascript-api/reference/core 示例中心:https://lbs.amap.com/ 阅读全文
posted @ 2021-07-01 15:53 米牙 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 增加standard标准即可 参看配置github:https://github.com/standard/eslint-config-standard 先跑命令 npm install --save-dev eslint-config-standard eslint-plugin-promise 阅读全文
posted @ 2021-07-01 11:42 米牙 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 1.在app.vue组件注入 //在template中写入 <div id="app"> <a-spin v-bind="loadingProps" > <router-view /> </a-spin> </div> //在代码中写入 data () { return { loadingProps 阅读全文
posted @ 2021-06-08 15:35 米牙 阅读(3846) 评论(0) 推荐(0) 编辑
摘要: vscode配置 需安装eslint和vetur两个插件 原因: 装eslint并配置:编辑时就可提示报错信息,保存可自动修复 vetur:会有一些vue语法提示 配置eslint 1.文件=》首选项=》设置 2.在settings.json中添加 也可在项目跟目录添加.vscode文件,里头添加s 阅读全文
posted @ 2021-06-03 14:04 米牙 阅读(125) 评论(0) 推荐(0) 编辑