
小程序
文章平均质量分 92
Destiny is not doomed
这个作者很懒,什么都没留下…
展开
-
小程序规格切换通过数据改变状态
数据都是动态的,所以用的最笨的方法,操控数据,操控标签恐怕是不行的,话不多说上代码 wxml {{item.pname}} {{items.value}} 时长 - + 确定 wxSS .pecifications { margin-top: 40%; background-color: #fff; border-radius: 50rpx 50rpx 0 0; } .pecifications .peciTop { height: 252rpx; } .p.原创 2020-11-07 12:03:39 · 306 阅读 · 2 评论 -
小程序根据返回的优惠券来计算当前的满减和下一个的满减
//计算优惠券的值 //this.data.totalmorey 总价 if (this.data.totalmorey > 0) { this.setData({ morenData: false, bianhuaData: true, bianhuaDatasa:false, }) } if (this.data.totalmorey <= 0) { this.setData({ ...原创 2019-10-21 12:14:48 · 730 阅读 · 0 评论 -
小程序上传图片,和动态修改for 循环的数据,
//小程序上传图片 动态修改for-itme里面的数据 handleUpload(e) { let _this = this var index = e.currentTarget.dataset.index; _this.setData({ ‘forms.setFlag’: this.data.openDatas[index].fileType, ‘forms.fileId’: this.dat...原创 2019-09-19 09:38:34 · 674 阅读 · 0 评论 -
小程序禁止用户输入空格
绑定name值就可以了 // js inputMobile(e) { let name = e.currentTarget.dataset.name; this.setData({ ‘forms.mobile’: e.detail.value, [name]: e.detail.value.replace(/\s+/g, ‘’) }) },原创 2019-09-20 12:40:35 · 705 阅读 · 0 评论