摘要: 获取今天以后一月内的日期数组 效果图 // 获取今天 const today = this.$moment(new Date()); // 获取一个月后的日期 const nextMonth = today.clone().add(1, "months"); // 初始化日期变量 const cur 阅读全文
posted @ 2024-12-25 10:04 不完美的完美 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 微信小程序上封装上传图片组件 安装 weapp components components/imgUp/index.wxml <view class="img-box"> <HFilesImg fileList="{{fileList}}" show-upload="{{showUpload}}" 阅读全文
posted @ 2024-11-25 14:05 不完美的完美 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 效果图 源码用demo下载,海报内容根据实际调整, 海报生成原文链接:https://developers.weixin.qq.com/community/develop/article/doc/000ac686c5c5506f18b87ee825b013 demo 代码片段:https://dev 阅读全文
posted @ 2024-11-25 11:02 不完美的完美 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 微信官方文档:https://developers.weixin.qq.com/miniprogram/introduction/qrcode.html#功能介绍 微信后台 - 管理 -开发管理 -扫普通链接二维码打开小程序 代码实现 /** * 生命周期函数--监听页面加载 */ onLoad: 阅读全文
posted @ 2024-11-22 11:21 不完美的完美 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 日期数组时间轴显示 效果图 <template> <div> <div class="time-line"> <span>小时的时间轴显示</span> <div class="time-box"> <div v-for="(item,index) in dateList" class="time- 阅读全文
posted @ 2024-11-21 16:59 不完美的完美 阅读(3) 评论(0) 推荐(0) 编辑
摘要: vue 项目中添加水印效果 效果图 原文链接:https://article.juejin.cn/post/7140610844223602725 方法 1 通过 waterMark.js 实现 水印会随着页面滚动而滚动 waterMark.js const watermark = {}; cons 阅读全文
posted @ 2024-11-21 13:41 不完美的完美 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 设置 // 自定义事件 const myEvent = new CustomEvent("onCustomEvent", { detail: { name: "张三", age: 18, }, }); window.dispatchEvent(myEvent); 获取 window.addEvent 阅读全文
posted @ 2024-05-07 16:17 不完美的完美 阅读(34) 评论(0) 推荐(0) 编辑
摘要: /* eslint-disable */ function getUrlKey (name) { return decodeURIComponent((new RegExp("[?|&]" + name + "=([^&;]+?)(&|#|;|$)").exec(location.href) || 阅读全文
posted @ 2024-05-07 16:07 不完美的完美 阅读(7) 评论(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 不完美的完美 阅读(61) 评论(0) 推荐(0) 编辑
摘要: js 计算乘算时数字溢出 场景项目上为了计算税率相乘,金额有小数点乘以税率后会导致部分数字溢出,为了解决数字溢出。 使用 bignumber.js 库: 安装 npm run install bignumber.js 使用: 效果图 // 引入BigNumber const BigNumber = 阅读全文
posted @ 2024-05-07 10:16 不完美的完美 阅读(134) 评论(0) 推荐(0) 编辑