摘要: 设置 // 自定义事件 const myEvent = new CustomEvent("onCustomEvent", { detail: { name: "张三", age: 18, }, }); window.dispatchEvent(myEvent); 获取 window.addEvent 阅读全文
posted @ 2024-05-07 16:17 不完美的完美 阅读(9) 评论(0) 推荐(0) 编辑
摘要: /* eslint-disable */ function getUrlKey (name) { return decodeURIComponent((new RegExp("[?|&]" + name + "=([^&;]+?)(&|#|;|$)").exec(location.href) || 阅读全文
posted @ 2024-05-07 16:07 不完美的完美 阅读(2) 评论(0) 推荐(0) 编辑
摘要: alert window.alert = function(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.setAttribute("src", 'data:text 阅读全文
posted @ 2024-05-07 15:56 不完美的完美 阅读(30) 评论(0) 推荐(0) 编辑
摘要: js 计算乘算时数字溢出 场景项目上为了计算税率相乘,金额有小数点乘以税率后会导致部分数字溢出,为了解决数字溢出。 使用 bignumber.js 库: 安装 npm run install bignumber.js 使用: 效果图 // 引入BigNumber const BigNumber = 阅读全文
posted @ 2024-05-07 10:16 不完美的完美 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 功能:实现房贷计算,区分等额本息,等额本金,查看月供详情 效果图 组件 存放路径 components/h-chosen 使用 Vant Weapp:https://vant-contrib.gitee.io/vant-weapp/#/home index.wxml <!-- components/ 阅读全文
posted @ 2024-04-17 10:39 不完美的完美 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 功能:富文本内容格式化、拿到富文本里的所有图片点击放大图片 util.ts export function formatRichText(html: any) { // 富文本内容格式化 let arrText = html; //正则匹配不含style="" 或 style='' 的img标签 v 阅读全文
posted @ 2024-04-17 10:11 不完美的完美 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 小程序上是实现拖动图标 效果 index.wxml <view> <view class="move-box" catchtouchmove="buttonMove" bindtouchstart="buttonStart" style="top:{{buttonTop}}px;left:{{but 阅读全文
posted @ 2024-04-17 09:50 不完美的完美 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 微信小程序上实现图片拖拽排序 使用组件 wx-drag-img npm 地址: https://www.npmjs.com/package/wx-drag-img 组件 1、通过 npm 安装:npm i wx-drag-img 2、点击微信开发者工具 -> 工具 -> 构建 npm 3、修改页面 阅读全文
posted @ 2024-04-01 15:59 不完美的完美 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 小程序上想要实现成点击标签跳转某标签,在标签内滚动时随着超过滚动内容 tab 选中态变化。 借助了 @vant/weapp 框架 index.wxml <view class="list-page"> <van-tabs sticky active="{{ active }}" bind:click 阅读全文
posted @ 2023-12-04 17:42 不完美的完美 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 2022-11 广东 1、云计算服务中,(B)为用户提供虚拟的操作系统,数据库管理系统,开发环境等服务。 A.Iaas B.Paas C.Saas D.Daas 解析: 按照云计算服务提供的资源层次,可以分为 IaaS、PaaS 和 SaaS 等三种服务类型。 (1)Iaas(基础设施即服务),向用 阅读全文
posted @ 2023-07-03 17:26 不完美的完美 阅读(391) 评论(0) 推荐(0) 编辑