您好,登錄后才能下訂單哦!
這篇文章主要介紹微信小程序如何實現購物時限購商品的數量,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
展示效果如下:
兩個底部用的是一個彈框,利用submit_type的類型不一樣來進行區分哪個是單獨購買哪個是包郵開團
wxml代碼如下:
<view class="num-box"> <view class="weui-media-box__bd"> <view class="promotion-sku clear"> <view class="Spinner"> <a wx:if="{{goods_count==1}}" class="DisDe"> <i bindtap="minusCount" data-index="{{index}}" class="DisDe">-</i> </a> <a wx:if="{{goods_count>1}}" class="Decrease"> <i bindtap="minusCount" data-index="{{index}}" class="DisDe">-</i> </a> <view> <input class="Amount" bindinput="changeCount" type='number' value="{{goods_count}}" autocomplete="off" maxlength="3" data-submit_type="{{submit_type}}" /> </view> <a class="Increase"> <i bindtap="addCount" data-index="{{index}}" data-submit_type="{{submit_type}}">+</i> </a> </view> </view> </view> </view>
data-submit_type="{{submit_type}}"中的submit_type就是判斷是單獨還是開團購買
js代碼如下:
// 增加數量 addCount(e) { // 購買類型,單獨購買或拼團購買 let submit_type = e.target.dataset.submit_type; var goods_count = this.data.goods_count; goods_count = parseInt(goods_count) + 1; //debugger if (submit_type == 2) { // 拼團購買 var limited_num = this.data.collage.limited_num; if (goods_count > limited_num) { this.showTip('超出限購'); return; } } this.setData({ goods_count: goods_count }); }, // 改變數量(input內的值) changeCount(e) { var goods_count = e.detail.value; let submit_type = e.target.dataset.submit_type; if (submit_type == 1) { var sys_num = this.data.goods_num; if (goods_count > sys_num) { // 單獨購買 this.showTip('庫存不足'); return; } } else if (submit_type == 2) { // 拼團購買 var limited_num = this.data.collage.limited_num; if (goods_count > limited_num) { this.showTip('超出限購'); return; } } if (!(/^[\d]+\.?\d*$/.test(goods_count))) { goods_count = goods_count.replace(/\D/g, ''); return goods_count ? goods_count : 1; } if (goods_count < 1) { return 1; } this.setData({ goods_count: goods_count }); },
以上是“微信小程序如何實現購物時限購商品的數量”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。