feat(shop): 添加买家备注功能
- 在订单确认页面添加买家备注字段 - 在支付请求中包含买家备注信息
This commit is contained in:
@@ -76,7 +76,8 @@ const OrderConfirm = () => {
|
||||
address.id,
|
||||
{
|
||||
comments: goods.name,
|
||||
deliveryType: 0
|
||||
deliveryType: 0,
|
||||
buyerRemarks: '',
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
@@ -170,6 +170,7 @@ export function buildSingleGoodsOrder(
|
||||
selfTakeMerchantId?: number;
|
||||
skuId?: number;
|
||||
specInfo?: string;
|
||||
buyerRemarks?: string;
|
||||
}
|
||||
): OrderCreateRequest {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user