1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import icon from "@/utils/icon";
- import config from "@/config/index";
- interface menuItem {
- MenuName: string;
- IsUse: string;
- IsShow: string;
- IsIframe?: boolean | string | number;
- Path: string;
- Icon?: any;
- SelectedIcon?: any;
- Children?: Array<menuItem>;
- }
- export default {
- navBar: [
- {
- MenuName: "页面规范",
- IsUse: "1",
- IsShow: "1",
- Path: "/layout/specification",
- },
- {
- MenuName: "表格类型页面",
- IsUse: "1",
- IsShow: "1",
- Path: "/layout/table",
- },
- {
- MenuName: "hospital2自定义页面",
- IsUse: "1",
- IsShow: "1",
- Path: "/layout/diy-page",
- },
- // 内嵌iframe
- // {
- // MenuName: "分组中心",
- // IsUse: "1",
- // IsShow: "1",
- // IsIframe: 1,
- // Path: "http://localhost:8081/hcrm/#/patient-manage/group-center", // 跨域不能
- // },
- ] as Array<menuItem>,
- };
|