feat(admin): 订单页筛选改版并支持用户与商品模糊搜索

收起次要筛选项,去掉过滤测试;列表可按用户编号/昵称/备注/手机与商品名称/规格查询。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-28 13:10:36 +08:00
parent fccfd7abbe
commit b226af2adc
5 changed files with 223 additions and 109 deletions
@@ -93,6 +93,16 @@ export class AdminOrdersQueryDto extends PaginationQueryDto {
@IsString()
userId?: string;
/** 用户编号 / 昵称 / 备注 / 手机 模糊匹配 */
@IsOptional()
@IsString()
userKeyword?: string;
/** 商品名称 / 规格 模糊匹配 */
@IsOptional()
@IsString()
productKeyword?: string;
@IsOptional()
@IsString()
cityId?: string;
@@ -159,6 +169,14 @@ export class AdminOrdersExportDto {
@IsString()
cityId?: string;
@IsOptional()
@IsString()
userKeyword?: string;
@IsOptional()
@IsString()
productKeyword?: string;
@IsOptional()
@IsString()
receiverPhone?: string;