Files
pqs-9100_client/frontend/src/api/resource/interface/index.ts

24 lines
604 B
TypeScript
Raw Normal View History

2024-10-17 15:09:27 +08:00
import type { DefineComponent } from "vue";
import type { DatetimeFormatProps } from "vue-i18n";
// 菜单管理模块
export namespace Resource {
// 菜单列表
export interface ResResourceList {
id: string;//资源表Id
name: string;//名称
path:string;//路径
sort:number;//排序
type:string;//资源类型
remark:string;//资源描述
route_Name:string;//路由名称
create_Time:string;//创建时间
update_Time:string;//更新时间
children?: ResResourceList[];
}
export interface ResType {
userLabel: string;
userValue: number;
}
}