Fix:3268 【礼品功能】进入送礼页面,商品价格会变成0

This commit is contained in:
modendeveloper
2025-02-23 23:22:33 +08:00
parent cca0f24cbc
commit 61e1e2939f
2 changed files with 33 additions and 3 deletions
+8
View File
@@ -39,4 +39,12 @@ export function getGiftCardReceive(data) {
*/
export function getGiftCardSendNotice(data) {
return request.get("/giftCard/giftNotice", data);
}
/**
* 计算订单金额
* @param {*} data
*/
export function getGiftCardSendOrderAmount(key, data) {
return request.post("giftCard/computed/" + key, data);
}