// pages/cart/cart.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
          choose:false,
          chooseAll:false,
          number:1
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
  
  },
  // 再逛逛
  get_return(){
    wx.switchTab({
      url: '../../pages/index/index'
    });
  },
  //选中商品
  choose(){
          this.setData({
                  choose:!this.data.choose
          });
  },
  //减少对应的数量
  dec(){
          if(this.data.number<=1){
                  return;
          }else{
                  var number=this.data.number;
                  number--;
                  this.setData({
                          number:number
                  });
          }
  },
  //选中所有商品
  chooseAll(){

  },
  //增加商品数量
  add(){
          var number = this.data.number;
          number++;
          this.setData({
                  number:number
          });
  },
  //去结算
  account(){
          
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {
  
  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
  
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {
  
  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {
  
  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {
  
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
  
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {
  
  }
})