1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * @Author: your name
- * @Date: 2022-01-10 13:56:19
- * @LastEditTime: 2022-07-11 18:12:01
- * @LastEditors: code4eat awesomedema@gmail.com
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/components/topBar/typings.d.ts
- */
- declare namespace TopBar {
- export type Tab = {
- menuId: number | string;
- systemId: string;
- name: string;
- icon?: string;
- url?: string;
- path: string;
- type:number;
- contentType:string;
- isSetupMenu?:number;
- };
- export type TypeBlock = {
- icon?: string;
- name: string;
- menuId: number | string;
- path: string;
- type:number;
- contentType:string;
- systemId: string;
- child: Tab[]
- }
- export type PanelData = {
- name: string;
- menuId: number | string;
- path: string;
- icon?: string;
- systemId: string;
- type:number;
- child: TypeBlock[]
- }
- }
|