下单相关修改

This commit is contained in:
GaoHao
2024-09-27 13:38:11 +08:00
parent a821223a3b
commit 587fa3a620
2 changed files with 31 additions and 7 deletions

View File

@@ -276,6 +276,7 @@
placeholder="商品备注(选填)" placeholder="商品备注(选填)"
border="none" border="none"
v-model="item.note" v-model="item.note"
@blur="productBlur(item)"
></u--input> ></u--input>
</view> </view>
</view> </view>
@@ -754,6 +755,7 @@
"isVip": item.isVip, "isVip": item.isVip,
"productId": item.id, //商品id "productId": item.id, //商品id
"shopId": this.shopId, "shopId": this.shopId,
"note": item.note,
"userId": uni.cache.get('userInfo').id, "userId": uni.cache.get('userInfo').id,
"tableId": this.tableCode, "tableId": this.tableCode,
} }
@@ -777,6 +779,7 @@
"type": c == '+' ? 1 : 0, "type": c == '+' ? 1 : 0,
"isVip": item.isVip, "isVip": item.isVip,
"productId": item.productId, //商品id "productId": item.productId, //商品id
"note": item.note,
"shopId": this.shopId, "shopId": this.shopId,
"userId": uni.cache.get('userInfo').id, "userId": uni.cache.get('userInfo').id,
"tableId": this.tableCode, "tableId": this.tableCode,
@@ -787,6 +790,23 @@
} }
}, },
/**
* 菜品备注修改
*/
productBlur ( item ) {
let params = {
"skuId": item.skuId,
"num": item.number, //数量
"type": item.type,
"isVip": item.isVip,
"productId": item.productId, //商品id
"note": item.note,
"shopId": this.shopId,
"userId": uni.cache.get('userInfo').id,
"tableId": this.tableCode,
}
this.addCart(params);
},
/** /**
* 添加到购物车 * 添加到购物车
@@ -1040,6 +1060,7 @@
"type": c == '+' ? 1 : 0, "type": c == '+' ? 1 : 0,
"productId": item.id, //商品id "productId": item.id, //商品id
"isVip": item.isVip, "isVip": item.isVip,
"note": item.note,
"shopId": this.shopId, "shopId": this.shopId,
"userId": uni.cache.get('userInfo').id, "userId": uni.cache.get('userInfo').id,
"tableId": this.tableCode, "tableId": this.tableCode,

View File

@@ -84,10 +84,11 @@
} }
let res = await this.api.productChoseCount({ let res = await this.api.productChoseCount({
orderId: this.orderId, tableId: this.tableCode,
dinersNum: this.dinersNum, num: this.dinersNum,
shopId: this.shopId, shopId: this.shopId,
}) //判断是否支付成功 }) //判断是否支付成功
if ( res.code == 0) {
uni.pro.navigateTo('order_food/order_food', { uni.pro.navigateTo('order_food/order_food', {
tableCode: this.tableCode, tableCode: this.tableCode,
dinersNum: this.dinersNum, dinersNum: this.dinersNum,
@@ -95,6 +96,8 @@
} }
} }
}
}; };
</script> </script>