24 lines
604 B
TypeScript
24 lines
604 B
TypeScript
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;
|
|
}
|
|
} |