feat(order): 添加配送时间选择功能
- 在订单模型中新增 sendStartTime 字段用于预约配送时间 - 为水票套票商品添加配送时间选择器组件和日期选择逻辑 - 实现配送时间验证确保水票套票商品必须选择配送时间 - 优化支付错误处理增加配送范围提示和地址更换引导 - 调整套票购买注意事项显示动态最低起送量信息 - 移除用户票据页面重复的时间选择相关代码以保持一致性
This commit is contained in:
@@ -193,6 +193,8 @@ export interface OrderCreateRequest {
|
||||
couponId?: number;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 配送开始时间(用于预约/配送时间)
|
||||
sendStartTime?: string;
|
||||
// 配送方式 0快递 1自提
|
||||
deliveryType?: number;
|
||||
// 自提店铺ID
|
||||
@@ -233,6 +235,8 @@ export interface OrderCreateRequest {
|
||||
couponId?: number;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 配送开始时间(用于预约/配送时间)
|
||||
sendStartTime?: string;
|
||||
// 配送方式 0快递 1自提
|
||||
deliveryType?: number;
|
||||
// 自提店铺ID
|
||||
|
||||
Reference in New Issue
Block a user