上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 加密数据解密算法 接口如果涉及敏感数据(如wx.getUserInfo当中的 openId 和 unionId),接口的明文内容将不包含这些敏感数据。开发者如需要获取敏感数据,需要对接口返回的加密数据(encryptedData) 进行对称解密。 解密算法如下: 对称解密使用的算法为 AES-128 阅读全文
posted @ 2022-02-20 15:20 玛卡巴鉲 阅读(826) 评论(0) 推荐(0) 编辑
摘要: 先上代码: /** * 构造树型结构数据 * @param {*} data 数据源 * @param {*} parentId 父节点字段 默认 'parentId' */ export function handleTree(data, parentId) { const initArr = d 阅读全文
posted @ 2021-12-20 10:36 玛卡巴鉲 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1. 属性或参数中使用 ?:表示该属性或参数为可选项 2. 属性或参数中使用 !:表示强制解析(告诉typescript编译器,这里一定有值),常用于vue-decorator中的@Prop 3. 变量后使用 !:表示类型推断排除null、undefined 来自:https://blog.csdn 阅读全文
posted @ 2021-12-07 14:59 玛卡巴鉲 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 谷歌插件下载:https://chrome.zzzmh.cn/info?token=nhdogjmejiglipccpnnnanhbledajbpd Npm ZIp包下载: 直接下载:https://libraries.io/search?q= 淘宝镜像(后面加你要下载的包名):http://reg 阅读全文
posted @ 2021-11-23 13:45 玛卡巴鉲 阅读(52) 评论(0) 推荐(0) 编辑
摘要: echarts 5.0 之后移除了包内的Map文件夹,导致需要你自己去搞Json数据。 当你拿到你需要的Json数据之后,如下代码就可以看到地图: import * as echarts from "echarts"; import china from "@/config/map/json/chi 阅读全文
posted @ 2021-11-12 16:57 玛卡巴鉲 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 1.要注意的重点是需要在option的series中设置一个额外的图数据:标红代码就是用来高亮的series。 const option2 = { series: [ { type: "pie", radius: "65%", }, { type: "pie", radius: "65%", lab 阅读全文
posted @ 2021-11-12 16:48 玛卡巴鉲 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: import * as echarts from "echarts"; // echarts 5.0 itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, color: '#83bff6' 阅读全文
posted @ 2021-11-10 11:35 玛卡巴鉲 阅读(76) 评论(0) 推荐(0) 编辑
摘要: overflow: -moz-scrollbars-none; // IE -ms-overflow-style: none; // 火狐 &::-webkit-scrollbar { width: 0 !important; } 阅读全文
posted @ 2021-11-09 15:39 玛卡巴鉲 阅读(18) 评论(0) 推荐(0) 编辑
摘要: series: [ { type: "bar", barWidth: "40%", stack: "total", itemStyle: { barBorderRadius: [0, 0, 8, 8], // 重点 }, data: [], }, ] 官方文档:borderRadius不起作用,经过 阅读全文
posted @ 2021-10-15 17:13 玛卡巴鉲 阅读(840) 评论(0) 推荐(0) 编辑
摘要: const colorList = [[ '#ff7f50', '#87cefa', '#da70d6', '#32cd32', '#6495ed', '#ff69b4', '#ba55d3', '#cd5c5c', '#ffa500', '#40e0d0', '#1e90ff', '#ff6347 阅读全文
posted @ 2021-10-15 13:57 玛卡巴鉲 阅读(709) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页