微信小程序如何實現購物時限購商品的數量

這篇文章主要介紹微信小程序如何實現購物時限購商品的數量,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

沙坪壩網站建設公司創(chuàng)新互聯建站,沙坪壩網站設計制作,有大型網站制作公司豐富經驗。已為沙坪壩1000+提供企業(yè)網站建設服務。企業(yè)網站搭建\外貿網站制作要多少錢,請找那個售后服務好的沙坪壩做網站的公司定做!

展示效果如下:

微信小程序如何實現購物時限購商品的數量

兩個底部用的是一個彈框,利用submit_type的類型不一樣來進行區(qū)分哪個是單獨購買哪個是包郵開團

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
    });
  },

以上是“微信小程序如何實現購物時限購商品的數量”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯行業(yè)資訊頻道!

文章標題:微信小程序如何實現購物時限購商品的數量
當前網址:http://muchs.cn/article42/gddshc.html

成都網站建設公司_創(chuàng)新互聯,為您提供ChatGPT、關鍵詞優(yōu)化移動網站建設、標簽優(yōu)化、網站收錄自適應網站

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

網站建設網站維護公司