|
@@ -11,6 +11,8 @@ Page({
|
|
|
totalPrice:0,
|
|
totalPrice:0,
|
|
|
checkedCount:0,
|
|
checkedCount:0,
|
|
|
isManage:false, // 是否进入管理模式
|
|
isManage:false, // 是否进入管理模式
|
|
|
|
|
+ showAddCartModal:false,
|
|
|
|
|
+ currentProduct:null
|
|
|
},
|
|
},
|
|
|
// 获取购物车商品
|
|
// 获取购物车商品
|
|
|
getCartProds(){
|
|
getCartProds(){
|
|
@@ -141,6 +143,20 @@ Page({
|
|
|
url: '/pages/order/confirmOrder/confirmOrder?prods='+encodeURIComponent(JSON.stringify(prods)),
|
|
url: '/pages/order/confirmOrder/confirmOrder?prods='+encodeURIComponent(JSON.stringify(prods)),
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
|
|
+ // 显示商品属性模态框
|
|
|
|
|
+ showAddCartModal(e) {
|
|
|
|
|
+ const product = e.detail;
|
|
|
|
|
+ this.setData({
|
|
|
|
|
+ showAddCartModal: true,
|
|
|
|
|
+ currentProduct:product
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ // 关闭属性选择模态框
|
|
|
|
|
+ handleCloseAddCartModal(){
|
|
|
|
|
+ this.setData({
|
|
|
|
|
+ showAddCartModal:false
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
onLoad(){
|
|
onLoad(){
|
|
|
},
|
|
},
|
|
|
onShow(){
|
|
onShow(){
|