var t = require("../../utils/public"); var util = require('../../utils/util.js'); var status = require('../../utils/index.js'); var app = getApp(); Component({ properties: { spuItem: { type: Object, value: { spuId: "", skuId: "", spuImage: "", spuName: "", endTime: 0, beginTime: "", actPrice: ["", ""], marketPrice: ["", ""], spuCanBuyNum: "", soldNum: "", actId: "", limitMemberNum: "", limitOrderNum: "", serverTime: "", isLimit: false, skuList: [], spuDescribe: "", is_take_fullreduction: 0, label_info: "", car_count: 0 } }, isPast: { type: Boolean, value: false }, actEnd: { type: Boolean, value: false }, reduction: { type: Object, value: { full_money: '', full_reducemoney: '', is_open_fullreduction: 0 } }, isShowListCount: { type: Number, value: 0 }, changeCarCount: { type: Boolean, value: false, observer: function (t) { if (t) this.setData({ number: this.data.spuItem.car_count || 0 }); } } }, attached() { this.setData({ placeholdeImg: app.globalData.placeholdeImg}) }, data: { disabled: false, placeholdeImg: '', number: 0 }, ready: function () { this.setData({ number: this.data.spuItem.car_count || 0 }); }, methods: { openSku: function() { console.log( 'step1'); this.setData({ stopClick:true, disabled:false }) if (this.data.spuItem.skuList.length === void 0) { this.triggerEvent("openSku", { actId:this.data.spuItem.actId, skuList: this.data.spuItem.skuList, promotionDTO: this.data.spuItem.promotionDTO, allData: { spuName: this.data.spuItem.spuName, skuImage: this.data.spuItem.skuImage, actPrice: this.data.spuItem.actPrice, canBuyNum: this.data.spuItem.spuCanBuyNum, stock: this.data.spuItem.spuCanBuyNum, marketPrice: this.data.spuItem.marketPrice } }); } else { this.addCart({ value: 1, type: "plus" }); } }, countDownEnd: function() { this.setData({ actEnd: true }); }, submit2: function(e) { (0, t.collectFormIds)(e.detail.formId); }, changeNumber: function (t) { var e = t.detail; e && this.addCart(e); }, outOfMax: function (t) { var e = t.detail, canBuyNum = this.data.spuItem.spuCanBuyNum; if(this.data.number >= canBuyNum) { wx.showToast({ title: "不能购买更多啦", icon: "none" }) } }, addCart: function (t) { console.log(t) // {value: 2, type: "plus/minus"} var token = wx.getStorageSync('token'); var community = wx.getStorageSync('community'); var goods_id = this.data.spuItem.actId; var community_id = community.communityId; // var quantity = t.value || 1; let that = this; if (t.type =='plus'){ // let spuCanBuyNum = this.data.spuItem.spuCanBuyNum; // if (quantity > spuCanBuyNum) quantity = spuCanBuyNum; app.util.request({ url: 'entry/wxapp/user', data: { controller: 'car.add', token: token, goods_id: goods_id, community_id: community_id, quantity: 1, sku_str: '', buy_type: 'dan', pin_id: 0, is_just_addcar: 1 }, dataType: 'json', method: 'POST', success: function (res) { if (res.data.code == 3) { let max_quantity = res.data.max_quantity || ''; (max_quantity > 0) && that.setData({ number: that.data.number }) wx.showToast({ title: res.data.msg, icon: 'none', duration: 2000 }) } else if (res.data.code == 6) { let max_quantity = res.data.max_quantity || ''; (max_quantity > 0) && that.setData({ number: that.data.number }) var msg = res.data.msg; wx.showToast({ title: msg, icon: 'none', duration: 2000 }) } else { that.triggerEvent("changeCartNum", res.data.total); that.setData({ number: res.data.cur_count }) wx.showToast({ title: "已加入购物车", image: "../../images/addShopCart.png" }) status.indexListCarCount(goods_id, res.data.cur_count); } } }) } else { app.util.request({ url: 'entry/wxapp/user', data: { controller: 'car.reduce_car_goods', token: token, goods_id: goods_id, community_id: community_id, quantity: 1, sku_str: '', buy_type: 'dan', pin_id: 0, is_just_addcar: 1 }, dataType: 'json', method: 'POST', success: function (res) { if (res.data.code == 3) { wx.showToast({ title: res.data.msg, icon: 'none', duration: 2000 }) } else { that.triggerEvent("changeCartNum", res.data.total); that.setData({ number: res.data.cur_count }) status.indexListCarCount(goods_id, res.data.cur_count); } } }) } } } });