上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: .el-table{ ::v-deep .el-table__fixed{ height: auto !important; bottom: 16px; // 横向滚动条高度 } ::v-deep .el-table__fixed::before { display:none; // 边框显示问题 阅读全文
posted @ 2022-12-19 17:27 玛卡巴鉲 阅读(1016) 评论(0) 推荐(0)
摘要: 1.配置 npm i unplugin-auto-import -D import AutoImport from 'unplugin-auto-import/vite' AutoImport({ dts: 'types/auto-imports.d.ts', eslintrc: { enabled 阅读全文
posted @ 2022-10-18 16:43 玛卡巴鉲 阅读(2145) 评论(0) 推荐(0)
摘要: 1.环境准备 1)安装node 选择你需要下载的版本进行下载:https://nodejs.org/dist/ 我这里选择:node-v14.18.0-linux-x64.tar 将下载到的ZIP包通过工具传到服务器/usr/local(我这里用的是FinalShell) 解压:tar -xvf n 阅读全文
posted @ 2022-08-02 17:56 玛卡巴鉲 阅读(233) 评论(0) 推荐(0)
摘要: 1.下载echarts.js放到static目录 npm i echarts@3.6.2 --save // 使用版本一定要注意,这里3.6.2是测试过没问题的版本,高版本点击事件会报错 然后将js文件放到对应目录 2.创建组件,这里直接贴代码,map.vue: <template> <view i 阅读全文
posted @ 2022-07-28 17:14 玛卡巴鉲 阅读(1175) 评论(3) 推荐(1)
摘要: 主要是应用geo这个属性: export const baseOption = ({ areaStr, scatterDara, zoom = 1.6, layoutSize = '80%', aspectScale = 0.8, layoutCenterOne = 55, layoutCenter 阅读全文
posted @ 2022-07-25 17:04 玛卡巴鉲 阅读(4162) 评论(0) 推荐(0)
摘要: 高德地图Api官网:https://lbs.amap.com/api/javascript-api/reference/search#m_AMap.DistrictSearch 1.使用DistrictSearch插件可以通过城市名或城市码查询到城市的区号、城市编码、中心点、边界、下辖区域等详细信息 阅读全文
posted @ 2022-07-22 16:04 玛卡巴鉲 阅读(5110) 评论(0) 推荐(0)
摘要: // 横向虚线 .dash-horizontal { width: 100%; height: 1px; background-image: linear-gradient(to right, #ddd 0%, #ddd 50%, transparent 50%); background-size: 阅读全文
posted @ 2022-07-20 09:28 玛卡巴鉲 阅读(129) 评论(0) 推荐(0)
摘要: 1. 使用插件 vue-seamless-scroll 网址:https://chenxuan1993.gitee.io/component-document/index_prod#/component/seamless-default 配置参数: defaultOption () { return 阅读全文
posted @ 2022-07-08 13:52 玛卡巴鉲 阅读(558) 评论(0) 推荐(0)
摘要: 1.获取详细地址: AMap.plugin("AMap.Geocoder", () => { geocoder = new AMap.Geocoder(); if (geocoder) { geocoder.getAddress([lng, lat], (status, result) => { i 阅读全文
posted @ 2022-06-13 17:31 玛卡巴鉲 阅读(1532) 评论(0) 推荐(0)
摘要: 1.卸载sass npm uninstall sass 2.下载node-sass npm i node-sass@4.14.1 --save-dev 打包app.css文件出现就解决了。 阅读全文
posted @ 2022-05-24 14:37 玛卡巴鉲 阅读(70) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 11 下一页