摘要: 在与后端对接口的时候,有个GET分页接口,需要传pageSize,currentPage等参数,这种不敏感的数据其实直接拼接在url上面就好了,但是后端可能出于开发习惯就把接口的这些参数放在了body上,并在postman或者apifox上测试没毛病,就让前端开始对接。前端在对接的过程中发现添加到b 阅读全文
posted @ 2024-06-27 15:22 xuelin 阅读(807) 评论(0) 推荐(0) 编辑
摘要: # 查看远端地址 git remote -v # 查看远端仓库名 git remote # 重新设置远程仓库 git remote set-url origin https://gitee.com/xx/xx.git (新地址) 这样仓库地址更新完毕,有可能会遇到 Git 在尝试拉取远程分支 mai 阅读全文
posted @ 2024-01-30 10:05 xuelin 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 相关参考网址:https://leafletjs.cn/reference.html#map-example 区域回显:https://kklimczak.github.io/Leaflet.Pin/; https://blog.csdn.net/BADAO_LIUMANG_QIZHI/articl 阅读全文
posted @ 2024-01-29 11:06 xuelin 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 相关代码 <!-- * @Author: wxl * @Date: 2023-05-25 10:27:16 * @LastEditors: wxl * @LastEditTime: 2023-05-26 10:58:34 --> <template> <div :id="histogramId" v 阅读全文
posted @ 2024-01-29 10:56 xuelin 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 注意事项: 项目中安装的echarts版本必须是4.9.0 "echarts": "^4.9.0", "echarts-countries-js": "^1.0.5", "echarts-gl": "^1.1.2", 展示的相关区县官方json文件的获取方法: 打开: http://datav.al 阅读全文
posted @ 2024-01-29 10:51 xuelin 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 文档:https://cloud.tencent.com/document/product/647/78731 PC端音视频项目只能运行在https协议下,策略要求 步骤:粘贴了主要代码,相关次要代码比如token,请求人列表,userSing等根绝项目进行灵活变通 npm install @ten 阅读全文
posted @ 2024-01-29 10:46 xuelin 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 组件代码: <template> <!-- 柱状图 横向滚动柱状图 --> <div :id="histogramId" v-bind:style="{height:height,width:width}"></div> </template> <script type="text/ecmascri 阅读全文
posted @ 2024-01-29 10:44 xuelin 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 相关组件代码: <template> <!-- 柱状图 横向滚动柱状图 --> <div :id="histogramId" v-bind:style="{height:height,width:width}"></div> </template> <script type="text/ecmasc 阅读全文
posted @ 2024-01-29 10:42 xuelin 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 相关代码: /* * @Author: wxl * @Date: 2022-11-04 08:22:23 * @Last Modified by: wxl * @Last Modified time: 2022-12-12 17:32:58 */ <template> <!-- 饼图 --> <di 阅读全文
posted @ 2024-01-29 10:37 xuelin 阅读(14) 评论(0) 推荐(0) 编辑
摘要: /* * @Author: wxl * @Date: 2022-11-04 08:22:23 * @Last Modified by: wxl * @Last Modified time: 2022-12-12 17:32:58 */ <template> <!-- 饼图 四分之三圆--> <div 阅读全文
posted @ 2024-01-29 10:35 xuelin 阅读(6) 评论(0) 推荐(0) 编辑