真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序如何實現(xiàn)購物時限購商品的數(shù)量

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

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

展示效果如下:

微信小程序如何實現(xiàn)購物時限購商品的數(shù)量

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

wxml代碼如下:

 
      
          
             
                
                     -
                
                1}}" class="Decrease">
                     -
                
             
              
           
                
                   +
                                   
          
         
      
 

data-submit_type="{{submit_type}}"中的submit_type就是判斷是單獨還是開團購買

js代碼如下:

// 增加數(shù)量
  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
    });
  },
// 改變數(shù)量(input內(nèi)的值)
  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
    });
  },

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


網(wǎng)站名稱:微信小程序如何實現(xiàn)購物時限購商品的數(shù)量
URL鏈接:http://weahome.cn/article/gddshc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部