feat(shopOrder): 优化订单搜索和管理功能

- 添加订单编号、用户ID、手机号、昵称等搜索条件
- 修改订单删除条件,仅允许删除已取消的订单
- 更新已退款订单的状态显示为"退货/售后"- 移除多余的环境变量配置
This commit is contained in:
2025-08-12 11:32:35 +08:00
parent df910e4344
commit cc8b8faf63
5 changed files with 69 additions and 15 deletions

View File

@@ -157,6 +157,9 @@ export interface ShopOrderParam extends PageParam {
orderNo?: string;
type?: number;
phone?: string;
userId?: number;
payUserId?: number;
nickname?: string;
payStatus?: number;
orderStatus?: number;
payType?: number;