|
@@ -188,37 +188,21 @@ var productDetail = new Vue({
|
|
|
_this.cartAlert = false;
|
|
|
}
|
|
|
})
|
|
|
- // request.addCart(params,function (res) {
|
|
|
- // if(res.code==0){
|
|
|
- // _this.cartAlert = true;
|
|
|
- // _this.typedata = res.data;//商品种数
|
|
|
- // }else {
|
|
|
- //
|
|
|
- // _this.cartAlert = false;
|
|
|
- // }
|
|
|
- // })
|
|
|
- },
|
|
|
- buyShopCart:function(){//立即购买
|
|
|
- var _this = this;
|
|
|
- var productid = _this.productId;
|
|
|
- allCount = _this.number;
|
|
|
- var confirmorder ={
|
|
|
- allPrice:_this.allTotalPrice,
|
|
|
- productID:productid,
|
|
|
- productCount:allCount,
|
|
|
- type:1
|
|
|
- };
|
|
|
- _util.setStorageItem('confirmGoodsInfo',JSON.stringify({data:confirmorder}));
|
|
|
- window.location.href = '/order/confirmOrder.jsp?type=1';
|
|
|
- },
|
|
|
+ },
|
|
|
Continueshop:function(){ //继续购物
|
|
|
- var _this = this;
|
|
|
- _this.cartAlert = false;
|
|
|
- location.reload()
|
|
|
- },
|
|
|
- settlement:function(){//去结算
|
|
|
- window.location.href = "/shopping/cart.html"
|
|
|
- },
|
|
|
+ var _this = this;
|
|
|
+ _this.cartAlert = false;
|
|
|
+ location.reload()
|
|
|
+ },
|
|
|
+ settlement:function(){//去结算
|
|
|
+ window.location.href = "/shopping/cart.html"
|
|
|
+ },
|
|
|
+ buyNowSubmit: function(){
|
|
|
+ if(this.productId && this.number){
|
|
|
+ // type:(1购物车提交[对应表cm_cart],2直接购买提交, 3协销下单)
|
|
|
+ window.location.href = '/shopping/confirm.html?type=2&id='+this.productId+'&count='+this.number;
|
|
|
+ }
|
|
|
+ },
|
|
|
getRecommends: function(){
|
|
|
var _self = this;
|
|
|
if(!this.productId){return;}
|