@ant-design/icons#AreaChartOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#AreaChartOutlined. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: router.js    From credit with Apache License 2.0 6 votes vote down vote up
userRoutes = [
    {
        path: "/admin/userdashboard",
        component: UserDashboard,
        isShow: true,
        title: "个人信息",
        icon: AreaChartOutlined
    },
    {
        path: "/admin/dataUpload",
        component: dataUpload,
        isShow: true,
        title: "信息录入",
        icon: CloudUploadOutlined
    },
    {
        path: "/admin/creditgrant",
        component: creditGrant,
        isShow: true,
        title: "信用数据授权",
        icon: AuditOutlined
    },
    {
        path: "/admin/certificateDownload",
        component: certificateDownload,
        isShow: true,
        title: "证书下载",
        icon: DownloadOutlined
    },
    {
        path: "/admin/bingli",
        component: bingli,
        isShow: true,
        title: "病例",
        icon: DownloadOutlined
    }
]
Example #2
Source File: router.js    From credit with Apache License 2.0 6 votes vote down vote up
institutionRoutes = [

    {
        path: "/admin/institutiondashboard",
        component: InstitutionDashboard,
        isShow: true,
        title: "综合看板",
        icon: AreaChartOutlined
    },
    {
        path: "/admin/datashare",
        component: dataShare,
        isShow: true,
        title: "数据共享",
        icon: ShareAltOutlined
    },
    {
        path: "/admin/modelsearch",
        component: modelSearch,
        isShow: true,
        title: "模型搜索",
        icon: SearchOutlined
    },
    {
        path: "/admin/learning",
        component: learning,
        isShow: true,
        title: "联邦学习",
        icon: GlobalOutlined
    },
    {
        path: "/admin/creditAuth",
        component: creditAuth,
        isShow: true,
        title: "信用认证",
        icon: SafetyCertificateOutlined
    },
]
Example #3
Source File: router.js    From credit with Apache License 2.0 5 votes vote down vote up
superviseRoutes = [
    {
        path: "/admin/supervisedashboard",
        component: SuperviseDashboard,
        exact: true,
        isShow: true,
        title: "监管信息面板",
        icon: AreaChartOutlined
    },
    {
        path: "/admin/dataapproval",
        component: dataApproval,
        exact: true,
        isShow: true,
        title: "信息审核",
        icon: CopyOutlined
    },
    {
        path: "/admin/punish",
        component: punish,
        exact: true,
        isShow: true,
        title: "违约处罚",
        icon: ToolOutlined
    },
    {
        path: "/admin/ceriticateApprove",
        component: certificateApprove,
        exact: true,
        isShow: true,
        title: "认证签名",
        icon: VerifiedOutlined
    },
    {
        path: "/admin/contributionverify",
        component: contributionVerify,
        exact: true,
        isShow: true,
        title: "贡献审核",
        icon: SolutionOutlined
    },
]