localhost_oa_based/src/modules/system/menu/menu.dto.ts

89 lines
2.1 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ApiProperty, PartialType } from '@nestjs/swagger';
2024-02-28 08:32:35 +08:00
import {
IsBoolean,
IsIn,
IsInt,
IsOptional,
IsString,
Min,
MinLength,
2024-02-29 09:29:03 +08:00
ValidateIf
2024-02-28 17:02:46 +08:00
} from 'class-validator';
2024-02-28 08:32:35 +08:00
export class MenuDto {
@ApiProperty({ description: '菜单类型' })
@IsIn([0, 1, 2])
2024-02-28 17:02:46 +08:00
type: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '父级菜单' })
@IsOptional()
2024-02-28 17:02:46 +08:00
parentId: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '菜单或权限名称' })
@IsString()
@MinLength(2)
2024-02-28 17:02:46 +08:00
name: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '排序' })
@IsInt()
@Min(0)
2024-02-28 17:02:46 +08:00
orderNo: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '前端路由地址' })
// @Matches(/^[/]$/)
@ValidateIf(o => o.type !== 2)
2024-02-28 17:02:46 +08:00
path: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '是否外链', default: false })
@ValidateIf(o => o.type !== 2)
@IsBoolean()
2024-02-28 17:02:46 +08:00
isExt: boolean;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '外链打开方式', default: 1 })
@ValidateIf((o: MenuDto) => o.isExt)
@IsIn([1, 2])
2024-02-28 17:02:46 +08:00
extOpenMode: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '菜单是否显示', default: 1 })
@ValidateIf((o: MenuDto) => o.type !== 2)
@IsIn([0, 1])
2024-02-28 17:02:46 +08:00
show: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '设置当前路由高亮的菜单项,一般用于详情页' })
@ValidateIf((o: MenuDto) => o.type !== 2 && o.show === 0)
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
activeMenu?: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '是否开启页面缓存', default: 1 })
@ValidateIf((o: MenuDto) => o.type === 1)
@IsIn([0, 1])
2024-02-28 17:02:46 +08:00
keepAlive: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '状态', default: 1 })
@IsIn([0, 1])
2024-02-28 17:02:46 +08:00
status: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '菜单图标' })
@IsOptional()
@ValidateIf((o: MenuDto) => o.type !== 2)
@IsString()
2024-02-28 17:02:46 +08:00
icon?: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '对应权限' })
@ValidateIf((o: MenuDto) => o.type === 2)
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
permission: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '菜单路由路径或外链' })
@ValidateIf((o: MenuDto) => o.type !== 2)
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
component?: string;
2024-02-28 08:32:35 +08:00
}
export class MenuUpdateDto extends PartialType(MenuDto) {}
export class MenuQueryDto extends PartialType(MenuDto) {}