修改样式
This commit is contained in:
@@ -467,6 +467,24 @@ export async function appMerchantOrderPayOrderBatchPost({
|
||||
});
|
||||
}
|
||||
|
||||
/** 提交 Zip 支付凭证 POST /app/merchantOrder/zipPayVoucher */
|
||||
export async function appMerchantOrderZipPayVoucherPost({
|
||||
body,
|
||||
options,
|
||||
}: {
|
||||
body: { orderId: number; zipPayVoucher: string };
|
||||
options?: CustomRequestOptions;
|
||||
}) {
|
||||
return request<API.R>('/app/merchantOrder/zipPayVoucher', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
data: body,
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* PayOrderBatchBo - 批量订单支付参数
|
||||
*/
|
||||
|
||||
@@ -3031,6 +3031,7 @@
|
||||
'dishList'?: MerchantDishVo[];
|
||||
/** 商家视图对象 t_merchant */
|
||||
'merchantVo'?: MerchantVo;
|
||||
'isNew'?: number;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user