修改样式

This commit is contained in:
2026-04-11 11:55:03 +08:00
parent ef9210a567
commit ec9282a64f
59 changed files with 8708 additions and 2558 deletions
+18
View File
@@ -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 - 批量订单支付参数
*/
+1
View File
@@ -3031,6 +3031,7 @@
'dishList'?: MerchantDishVo[];
/** 商家视图对象 t_merchant */
'merchantVo'?: MerchantVo;
'isNew'?: number;
}