修改样式

This commit is contained in:
2026-06-05 15:03:32 +08:00
parent 7d891c9f7b
commit f2cde43bf4
58 changed files with 2762 additions and 939 deletions
+16
View File
@@ -123,6 +123,14 @@ export interface CalculatePriceCartBatchBo {
* 商户小费映射 { merchantId: tipAmount } (小费金额,单位:美元)
*/
merchantTipMap?: Record<string, number>;
/**
* 商户预约开始时间映射 { merchantId: timestamp }
*/
merchantStartScheduledTimeMap?: Record<string, number | string>;
/**
* 商户预约结束时间映射 { merchantId: timestamp }
*/
merchantEndScheduledTimeMap?: Record<string, number | string>;
[property: string]: any;
}
@@ -286,6 +294,14 @@ export interface CreateOrderCartBatchBo {
* 商户小费映射 { merchantId: tipAmount } (小费金额,单位:美元)
*/
merchantTipMap?: Record<string, number>;
/**
* 商户预约开始时间映射 { merchantId: timestamp }
*/
merchantStartScheduledTimeMap?: Record<string, number | string>;
/**
* 商户预约结束时间映射 { merchantId: timestamp }
*/
merchantEndScheduledTimeMap?: Record<string, number | string>;
[property: string]: any;
}
+2
View File
@@ -3754,6 +3754,8 @@
'deliveryService'?: number;
/** 配送时长(如"30分钟") */
'deliveryTime'?: string;
/** 可配送星期(1-7逗号分隔,1=周一 … 6=周六,7=周日) */
'deliveryScheduleTimes'?: string;
/** 配送费 */
'deliveryFee'?: number;
/** 店铺图片URL(多张逗号分隔) */