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