|
@@ -174,20 +174,14 @@ var productDetail = new Vue({
|
|
|
}
|
|
|
},
|
|
|
addShopCart:function(){ //加入购物车
|
|
|
- var _this = this;
|
|
|
- $.getJSON(spiServer + "/shoppingCart/addCart",{
|
|
|
- productID: _this.productId,
|
|
|
- userID: _this.userId,
|
|
|
- productCount: _this.number,
|
|
|
- }).done(function (res) {
|
|
|
- if(res.code==0){
|
|
|
- _this.cartAlert = true;
|
|
|
- _this.typedata = res.data;//商品种数
|
|
|
- }else {
|
|
|
-
|
|
|
- _this.cartAlert = false;
|
|
|
- }
|
|
|
- })
|
|
|
+ var _this = this;
|
|
|
+ tokenAjax("post", "/shoppingCart/addCart", {
|
|
|
+ userID: this.userId,
|
|
|
+ productID: this.productId,
|
|
|
+ productCount: this.number
|
|
|
+ },function (res) {
|
|
|
+ alertInfo(res.msg);
|
|
|
+ });
|
|
|
},
|
|
|
Continueshop:function(){ //继续购物
|
|
|
var _this = this;
|