feat(order): 添加配送时间选择功能

- 在订单模型中新增 sendStartTime 字段用于预约配送时间
- 为水票套票商品添加配送时间选择器组件和日期选择逻辑
- 实现配送时间验证确保水票套票商品必须选择配送时间
- 优化支付错误处理增加配送范围提示和地址更换引导
- 调整套票购买注意事项显示动态最低起送量信息
- 移除用户票据页面重复的时间选择相关代码以保持一致性
This commit is contained in:
2026-02-09 16:48:34 +08:00
parent 37c2f030f2
commit a1e1487d42
4 changed files with 108 additions and 51 deletions

View File

@@ -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