摘要: 问题:Vue项目在安装依赖时报错:"this[kHandle] = new _Hash(algorithm, xofLen);" 原因:这个错误通常是由于Node.js版本更新导致的。新版本的Node.js包含了OpenSSL 3.0,它对加密算法和密钥大小有更严格的限制,可能会影响一些旧项目。 解 阅读全文
posted @ 2024-10-28 16:02 shuihanxiao 阅读(16) 评论(0) 推荐(0) 编辑
摘要: async onLoad(ops) { this.makeResImg(); } /** * CANVAS画布生成图片 */ makeResImg() { wx.showLoading({ title: "生成中", mask: true }); this.setCanvasCtx(()=>{ th 阅读全文
posted @ 2024-09-19 10:23 shuihanxiao 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1,组件封装 <template> <view> <!-- 自定义卡片轮播 --> <swiper class="swiperBox" :previous-margin="swiper.margin" :next-margin='swiper.margin' :circular="true" @ch 阅读全文
posted @ 2024-07-12 13:55 shuihanxiao 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 微信小程序内嵌H5,发布后无法打开页面 解决方法 一、在微信公众平台,登录微信小程序的帐号。 二、配置业务域名 进入【开发-开发管理-开发设置-业务域名】中,开始配置业务域名(配置业务域名需小程序管理员扫码验证) 填写需要跳转的域名,然后点击下载校验文件,并将其放置在需要跳转的域名的根目录下。 注意 阅读全文
posted @ 2024-06-26 10:15 shuihanxiao 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 1图居中、圆边角、指示点颜色更改、指示点样式更改 下图是样式不好看的组件 要修改成这样:: wxml: <swiper class="bd" indicator-dots="{{true}}" indicator-active-color="#ff8f00" autoplay="{{true}}" 阅读全文
posted @ 2024-05-27 15:26 shuihanxiao 阅读(767) 评论(0) 推荐(0) 编辑
摘要: <view class="tab-list-movie" style="background:{{bgColor[swiperIndex]}}"> <swiper class="movie-swiper" autoplay interval="3000" circular indicator-dot 阅读全文
posted @ 2024-05-27 14:43 shuihanxiao 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://open.weixin.qq.com/sns/getexpappinfo?appid=这里填写你的appId&path=需要跳转的小程序地址 注意:需要跳转的小程序地址,需要在 地址最后 参数前 增加.html 例如我需要跳转体验版的小程序地址为 pages/home/index?n 阅读全文
posted @ 2024-04-26 10:54 shuihanxiao 阅读(304) 评论(0) 推荐(0) 编辑
摘要: ::v-deep .el-input { input[type="number"] { padding-right: 0px; -moz-appearance: textfield; -webkit-appearance: textfield; // 解决el-input设置类型为number时,中 阅读全文
posted @ 2024-04-18 10:23 shuihanxiao 阅读(64) 评论(0) 推荐(0) 编辑
摘要: wxml 内 <view class='product-contact' wx:if="{{contact!=''}}" data-contact1="{{contact1}}" data-contact2="{{contact2}}" catchtap='makeCall'>立即联系</view> 阅读全文
posted @ 2024-04-02 14:44 shuihanxiao 阅读(80) 评论(0) 推荐(0) 编辑
摘要: data: { animationData: {} }, created() { let animation = wx.createAnimation({ duration: 500, // delay: 1000, timingFunction: 'ease' }); this.animation 阅读全文
posted @ 2024-03-18 11:33 shuihanxiao 阅读(70) 评论(0) 推荐(0) 编辑