feat(shop): 添加买家备注功能

- 在订单确认页面添加买家备注字段
- 在支付请求中包含买家备注信息
This commit is contained in:
2025-08-11 00:55:36 +08:00
parent a2d763dd42
commit ffc73f45c2
2 changed files with 3 additions and 1 deletions

View File

@@ -76,7 +76,8 @@ const OrderConfirm = () => {
address.id, address.id,
{ {
comments: goods.name, comments: goods.name,
deliveryType: 0 deliveryType: 0,
buyerRemarks: '',
} }
); );

View File

@@ -170,6 +170,7 @@ export function buildSingleGoodsOrder(
selfTakeMerchantId?: number; selfTakeMerchantId?: number;
skuId?: number; skuId?: number;
specInfo?: string; specInfo?: string;
buyerRemarks?: string;
} }
): OrderCreateRequest { ): OrderCreateRequest {
return { return {