feat(admin): 订单页筛选改版并支持用户与商品模糊搜索
收起次要筛选项,去掉过滤测试;列表可按用户编号/昵称/备注/手机与商品名称/规格查询。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user