菜单管理
This commit is contained in:
24
frontend/src/api/resource/interface/index.ts
Normal file
24
frontend/src/api/resource/interface/index.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user