import Main from '@/components/main' import parentView from '@/components/parent-view' /** * iview-admin中meta除了原生参数外可配置的参数: * meta: { * title: { String|Number|Function } * 显示在侧边栏、面包屑和标签栏的文字 * 使用'{{ 多语言字段 }}'形式结合多语言使用,例子看多语言的路由配置; * 可以传入一个回调函数,参数是当前路由对象,例子看动态路由和带参路由 * hideInBread: (false) 设为true后此级路由将不会出现在面包屑中,示例看QQ群路由配置 * hideInMenu: (false) 设为true后在左侧菜单不会显示该页面选项 * notCache: (false) 设为true后页面在切换标签后不会缓存,如果需要缓存,无需设置这个字段,而且需要设置页面组件name属性和路由配置的name一致 * access: (null) 可访问该页面的权限数组,当前路由设置的权限会影响子路由 * icon: (-) 该页面在左侧菜单、面包屑和标签导航处显示的图标,如果是自定义图标,需要在图标名称前加下划线'_' * beforeCloseName: (-) 设置该字段,则在关闭当前tab页时会去'@/router/before-close.js'里寻找该字段名对应的方法,作为关闭前的钩子函数 * } */ export default [{ path: '/login', name: 'login', meta: { title: '登录', hideInMenu: true }, component: () => // import ('@/view/login/LoginView.vue') import('@/view/login/login.vue') }, { path: '/forgot', name: 'forgot', meta: { title: '忘记密码', hideInMenu: true }, component: () => import('@/view/login/forgot.vue') }, { path: '/register', name: 'register', meta: { title: '注册', hideInMenu: true }, component: () => import('@/view/login/RegisterView.vue') }, { path: '/UserAgreement', name: 'UserAgreement', meta: { title: '用户协议', hideInMenu: true }, component: () => import('@/view/login/UserAgreement.vue') }, { path: '/privacyPolicy', name: 'privacyPolicy', meta: { title: '隐私政策', hideInMenu: true }, component: () => import('@/view/login/privacyPolicy.vue') }, { path: '/newList', name: 'newList', meta: { title: '新闻', hideInMenu: true }, component: () => import('@/view/login/newList.vue') }, { path: '/newPushDetail', name: 'newPushDetail', meta: { title: '新闻推送', hideInMenu: true }, component: () => import('@/view/login/newPushDetail.vue') }, { path: '/customPhone', name: 'customPhone', meta: { title: '自选推送', hideInMenu: true }, component: () => import('@/view/custom-page/customPhone.vue') }, { path: '/memberEditPage', name: 'memberEditPage', meta: { title: '成员编辑', icon: 'custom custom-xiangmuzhuti', hideInMenu: true }, component: Main, children: [{ path: '/memberEdit', name: 'memberEdit', meta: { title: '成员编辑', icon: 'custom custom-xiangmuzhuti', // hideInMenu: true }, component: () => import('@/view/memberEdit/memberEdit.vue') }, ] }, // { // path: '/chooseAssessPage', // name: 'chooseAssessPage', // meta: { // title: '创建评估报告', // icon: 'custom custom-pinggu', // hideInMenu: true // }, // component: Main, // children: [{ // path: '/chooseAssess', // name: 'chooseAssess', // meta: { // title: '创建评估报告', // icon: 'custom custom-pinggu', // // hideInMenu: true // }, // component: () => // import('@/view/risk-control/risk-control-tool/riskControlReportFK/chooseAssess.vue') // }, // ] // }, { path: '/EvaluationResultPagePage', name: 'EvaluationResultPagePage', meta: { title: '违约率分析', icon: 'custom custom-pinggu', hideInMenu: true }, component: Main, children: [{ path: '/EvaluationResultPage', name: 'EvaluationResultPage', meta: { title: '违约率分析', icon: 'custom custom-pinggu', // hideInMenu: true }, component: () => import('@/view/risk-control/risk-control-tool/riskControlReportFK/EvaluationResultPage.vue') }, { path: '/reportParams', name: 'reportParams', meta: { // notCache: true, hideInMenu: true, icon: 'custom custom-zhutiguanxifenxi_b', title: '报告参数' }, component: () => import('@/view/risk-control/risk-control-tool/riskControlReportFK/reportParams.vue') }, ] }, { path: '/monitoringPage', name: 'monitoringPage', meta: { title: '组合监测', icon: 'custom custom-xiangmuzhuti', hideInMenu: true }, component: Main, children: [{ path: '/monitoring', name: 'monitoring', meta: { title: '组合监测', icon: 'custom custom-xiangmuzhuti', // hideInMenu: true }, component: () => import('@/view/monitoring/monitoring.vue') }, ] }, { path: '/newsDetail', name: 'newsDetail', meta: { title: '新闻舆论', icon: 'custom custom-xiangmuzhuti', hideInMenu: true }, component: Main, children: [{ path: '/newsDetail', name: 'newsDetail', meta: { title: '新闻舆论', icon: 'custom custom-xiangmuzhuti', // hideInMenu: true }, component: () => import('@/view/monitoring/newsDetail.vue') }, ] }, { path: '/', name: '_home', redirect: '/home', component: Main, meta: { hideInMenu: true, notCache: true }, children: [{ path: '/home', name: 'home', meta: { hideInMenu: true, title: '首页', notCache: true, // icon: 'md-home' icon: 'custom custom-home', }, component: () => import('@/view/single-page/home') }] }, // { // path: '/', // name: '_home', // redirect: '/home', // component: Main, // meta: { // // hideInMenu: true, // // notCache: true, // title: '自选', // icon: 'custom custom-xiangmuzhuti' // }, // children: [{ // path: '/home', // name: 'home', // meta: { // // hideInMenu: true, // title: '自选', // // notCache: true, // icon: 'custom custom-xiangmuzhuti' // }, // component: () => // import('@/view/custom-page/custom-page.vue') // }] // }, // { // path: '/', // name: '_custom', // redirect: '/custom', // component: Main, // meta: { // // access: ['no_admin'], // icon: 'custom custom-xiangmuzhuti', // title: '自选' // }, // children: [{ // path: '/customPage', // name: 'customPage', // meta: { // title: '自选', // icon: 'custom custom-xiangmuzhuti' // }, // component: () => // import('@/view/custom-page/custom-page.vue') // }, // ] // }, //全球新闻详情 { path: '/usedTools', name: 'usedTools', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '常用功能', hideInMenu: true }, component: Main, children: [{ path: '/usedTools', name: 'usedTools', meta: { hideInMenu: true, title: '常用功能', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/single-page/usedTools') }, ] }, { path: '/globe', name: 'globe', redirect: '/globePage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/globePage/:name', name: 'globePage', meta: { hideInMenu: true, title: '全球新闻', icon: 'custom custom-guquan', }, component: () => import('@/view/MacroData/MacroDataNew/newDetail.vue') }] }, // 微财报图谱页面 { path: '/test', name: 'test', redirect: '/testPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/testPage/:name', name: 'testPage', meta: { hideInMenu: true, title: '微财报', icon: 'custom custom-gongkaijibenxinxi_b' }, component: () => import('@/view/test/test') }] }, // 智图谱页面 { path: '/atlas', name: 'atlas', redirect: '/atlasPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/atlasPage/:name', name: 'atlasPage', meta: { hideInMenu: true, title: '知识图谱', icon: 'custom custom-pinggu' }, component: () => import('@/view/atlasDetail/atlas') }] }, //并购事件图谱 { path: '/maPage', name: 'maPage', redirect: '/maPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/maPage/:name', name: 'maPage', meta: { hideInMenu: true, title: '事件图谱', icon: 'custom custom-gongkaijibenxinxi_b', }, component: () => import('@/view/enterprise/MA-data/MAdetail.vue') }] }, //投资事件图谱 { path: '/investPage', name: 'investPage', redirect: '/investPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/investPage/:name', name: 'investPage', meta: { hideInMenu: true, title: '事件图谱', icon: 'custom custom-gongkaijibenxinxi_b', }, component: () => import('@/view/enterprise/invest/investDetail.vue') }] }, //半导体公司图谱 { path: '/semiconductorPage', name: 'semiconductorPage', redirect: '/semiconductorPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/semiconductorPage/:name', name: 'semiconductorPage', meta: { hideInMenu: true, title: '半导体微图谱', icon: 'custom custom-gongkaijibenxinxi_b', }, component: () => import('@/view/enterprise/semiconductor/semiconductorDetail.vue') }] }, //半导体海关图谱 { path: '/RRHaigDetailPage', name: 'RRHaigDetailPage', redirect: '/RRHaigDetailPage', component: Main, meta: { hideInMenu: true }, children: [{ path: '/RRHaigDetailPage/:name', name: 'RRHaigDetailPage', meta: { hideInMenu: true, title: '微数据', icon: 'custom custom-fenximoxing', }, component: () => import('@/view/IndustryData/Semiconductor/RRhaigDetail.vue') }] }, // { // path: '/RRHaigDetail', // name: 'RRHaigDetail', // meta: { // icon: 'custom custom-fenximoxing', // title: '半导体海关微数据详情', // // notCache:true // hideInMenu:true // }, // component: () => // import('@/view/IndustryData/Semiconductor/RRhaigDetail.vue') // }, { path: '/authority', name: 'authority', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '升级VIP', hideInMenu: true }, component: Main, children: [{ path: '/authority', name: 'authority', meta: { hideInMenu: true, title: '升级VIP', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/authority/authority.vue') }, ] }, { path: '/authorityVIP', name: 'authorityVIP', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '查看VIP', hideInMenu: true }, component: Main, children: [{ path: '/authorityVIP', name: 'authorityVIP', meta: { hideInMenu: true, title: '查看VIP', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/authority/authority.vue') }, ] }, { path: '/changePassword', name: 'changePassword', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '账号管理', hideInMenu: true }, component: Main, children: [{ path: '/changePassword', name: 'changePassword', meta: { hideInMenu: true, title: '账号管理', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/changePassword/changePassword1.vue') }, ] }, // { // path: '/myOrders', // name: 'myOrders', // meta: { // // access: ['no_admin'], // icon: 'custom custom-xiangmuzhuti', // title: '我的订单', // hideInMenu: true // }, // component: Main, // children: [{ // path: '/myOrders', // name: 'myOrders', // meta: { // hideInMenu: true, // title: '我的订单', // icon: 'custom custom-xiangmuzhuti' // }, // component: () => // import('@/view/changePassword/myOrders.vue') // }, // ] // }, // { // path: '/myOrders', // name: 'myOrders', // meta: { // // access: ['no_admin'], // icon: 'custom custom-xiangmuzhuti', // title: '我的订单', // hideInMenu: true // }, // component: Main, // children: [{ // path: '/myOrders', // name: 'myOrders', // meta: { // hideInMenu: true, // title: '我的订单', // icon: 'custom custom-xiangmuzhuti' // }, // component: () => // import('@/view/changePassword/myOrders.vue') // }, // ] // }, { path: '/rechargeManagement', name: 'rechargeManagement', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '账单管理', hideInMenu: true }, component: Main, children: [{ path: '/rechargeManagement', name: 'rechargeManagement', meta: { hideInMenu: true, title: '账单管理', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/changePassword/rechargeManagement.vue') }, ] }, { path: '/consumptionRecords', name: 'consumptionRecords', meta: { // access: ['no_admin'], icon: 'custom custom-xiangmuzhuti', title: '消费记录', hideInMenu: true }, component: Main, children: [{ path: '/consumptionRecords', name: 'consumptionRecords', meta: { hideInMenu: true, title: '消费记录', icon: 'custom custom-xiangmuzhuti' }, component: () => import('@/view/changePassword/consumptionRecords.vue') }, ] }, // { // path: '/changePassword', // name: 'changePassword', // meta: { // title: '账号管理', // hideInMenu: true // }, // component: () => // import('@/view/changePassword/changePassword2.vue') // }, { path: '/custom', name: 'custom', meta: { // access: ['no_admin'], icon: 'custom custom-ego-favfull', title: '我的自选' }, component: Main, children: [{ path: '/customPage', name: 'customPage', meta: { title: '我的自选', icon: 'custom custom-ego-favfull' }, component: () => import('@/view/custom-page/custom-page.vue') }, ] }, { path: '/MacroData', name: 'MacroData', meta: { icon: 'custom custom-bigdata-full', title: '宏观\n数据' }, component: Main, children: [{ path: '/MacroDataNew', name: 'MacroDataNew', meta: { icon: 'custom custom-gongkaiguquan', title: '新闻大数据' }, component: parentView, children: [ { path: '/Alerts', name: 'Alerts', meta: { icon: 'custom custom-guquan', title: '7*24小时快讯' }, component: () => import('@/view/MacroData/MacroDataNew/Alerts.vue') }, { path: '/alertsGlobe', name: 'alertsGlobe', meta: { icon: 'custom custom-guquan', title: '全球新闻资讯' }, component: () => import('@/view/MacroData/MacroDataNew/alertsGlobe.vue') }, { // access: ['no_admin'], path: '/rongNew', name: 'rongNew', meta: { icon: 'custom custom-guquan', title: '融资租赁新闻资讯' }, component: () => import('@/view/MacroData/MacroDataNew/rongNew.vue') }, ] }, { path: '/Macroeconomic', name: 'Macroeconomic', meta: { icon: 'custom custom-fangkuan', title: '宏观大数据' }, component: parentView, children: [{ path: '/Macroeconomic-ch', name: 'Macroeconomic-ch', meta: { icon: 'custom custom-fangkuan', title: `中国宏观经济待上线` }, component: () => import('@/view/MacroData/Macroeconomic/Macroeconomic-ch.vue') }, { path: '/Macroeconomic-am', name: 'Macroeconomic-am', meta: { icon: 'custom custom-fangkuan', title: `美国宏观经济待上线` }, component: () => import('@/view/MacroData/Macroeconomic/Macroeconomic-am.vue') }, { path: '/Astock', name: 'Astock', meta: { notCache: true, icon: 'custom custom-fangkuan', title: 'A股市场全景分析' }, component: () => import('@/view/risk-control/Astock.vue') }, ] }, ] }, { path: '/IndustryData', name: 'IndustryData', meta: { icon: 'custom custom-shujukanban', title: '行业\n数据' }, component: Main, children: [{ path: '/Semiconductor', name: 'Semiconductor', meta: { icon: 'custom custom-fenximoxing', title: '半导体行业' }, component: parentView, children: [ { path: '/SAnnualMarketReview', name: 'SAnnualMarketReview', meta: { icon: 'custom custom-fenximoxing', title: '半导体市场数据', notCache: true }, component: () => import('@/view/IndustryData/Semiconductor/AnnualMarketReview.vue') }, { path: '/SIndustryChainData', name: 'SIndustryChainData', meta: { icon: 'custom custom-fenximoxing', title: '半导体产业链数据', notCache: true }, component: () => import('@/view/IndustryData/Semiconductor/IndustryChainData.vue') }, { path: '/SSiliconWaferData', name: 'SSiliconWaferData', meta: { icon: 'custom custom-fenximoxing', title: '半导体硅晶圆数据', notCache: true }, component: () => import('@/view/IndustryData/Semiconductor/SiliconWaferData.vue') }, { path: '/EDA', name: 'EDA', meta: { icon: 'custom custom-fenximoxing', title: '半导体EDA数据', notCache: true }, component: () => import('@/view/IndustryData/Semiconductor/EDA.vue') }, { path: '/SRRHaig', name: 'SRRHaig', meta: { icon: 'custom custom-fenximoxing', title: '半导体海关微数据', notCache: true }, component: () => import('@/view/IndustryData/Semiconductor/RRhaig.vue') }, // { // path: '/enterpriseSemiconductor', // name: 'enterpriseSemiconductor', // meta: { // icon: 'custom custom-fenximoxing', // title: '半导体行业微图谱', // notCache: true // }, // component: () => // import('@/view/enterprise/semiconductor/semiconductorSearch.vue') // }, // { // path: '/hynew', // name: 'hynew', // meta: { // icon: 'custom custom-pinggu', // title: '行业新闻' // }, // component: () => // import('@/view/IndustryData/Semiconductor/hynew.vue') // }, { path: '/artDetail', name: 'artDetail', meta: { icon: 'custom custom-fenximoxing', title: '行业数据', hideInMenu: true, }, component: () => import('@/view/IndustryData/Semiconductor/artDetail.vue') }, ] }, { path: '/Photovoltaic', name: 'Photovoltaic', meta: { icon: 'custom custom-yewushuju', title: '光伏行业' }, component: parentView, children: [ { path: '/PAnnualMarketReview', name: 'PAnnualMarketReview', meta: { icon: 'custom custom-yewushuju', title: '光伏市场数据', notCache: true }, component: () => import('@/view/IndustryData/Photovoltaic/AnnualMarketReview.vue') }, { path: '/PIndustryChainData', name: 'PIndustryChainData', meta: { icon: 'custom custom-yewushuju', title: '光伏产业链数据', notCache: true }, component: () => import('@/view/IndustryData/Photovoltaic/IndustryChainData.vue') }, ] }, { path: '/AIGC', name: 'AIGC', meta: { icon: 'custom custom-guquan_w', title: 'AIGC行业' }, component: parentView, children: [ { path: '/AIGCInfo', name: 'AIGCInfo', meta: { icon: 'custom custom-guquan_w', title: 'GPT大模型应用资讯' }, component: () => import('@/view/IndustryData/gpt/AIGCInfo.vue') }, { path: '/AIGCDomestic', name: 'AIGCDomestic', meta: { icon: 'custom custom-guquan_w', title: 'GPT大模型国内开源' }, component: () => import('@/view/IndustryData/gpt/AIGCDomestic.vue') }, { path: '/AIGCAbroad', name: 'AIGCAbroad', meta: { icon: 'custom custom-guquan_w', title: 'GPT大模型国外开源' }, component: () => import('@/view/IndustryData/gpt/AIGCAbroad.vue') }, ] }, ] }, { path: '/enterprise', name: 'enterprise', meta: { icon: 'custom custom-gongsi2', title: `公司\n数据` }, component: Main, children: [ { path: '/enterpriseData', name: 'enterpriseData', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '企业大数据' }, component: parentView, children: [ { path: '/enterpriseDataBase', name: 'enterpriseDataBase', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '公司工商数据' }, component: () => import('@/view/enterprise/enterprise-data/enterprise-data-base1.vue') }, // { // path: '/enterpriseRelationshipMining', // name: 'enterpriseRelationshipMining', // meta: { // notCache: true, // // access: ['no_admin', 'enterpriseRelationshipMining'], // icon: 'custom custom-shujuwajue', // title: '公司关系挖掘' // }, // component: () => // import('@/view/enterpriseRelationship/enterpriseRelationshipMining.vue') // }, { path: '/enterpriseDataReport', name: 'enterpriseDataReport', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '上市公司微财报' }, component: () => import('@/view/enterprise/enterprise-data/enterprise-data-report.vue') }, { path: '/comments', name: 'comments', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '上市公司微点评' }, component: () => import('@/view/IndustryData/comments.vue') }, // { // path: '/enterpriseDataAtlas', // name: 'enterpriseDataAtlas', // meta: { // icon: 'custom custom-gongkaijibenxinxi_b', // title: '公司知识图谱待上线' // }, // component: () => // import('@/view/enterprise/enterprise-data/enterprise-data-atlas.vue') // }, // { // path: '/enterpriseDataAtlas', // name: 'enterpriseDataAtlas', // meta: { // icon: 'custom custom-gongkaijibenxinxi_b', // title: '公司知识图谱' // }, // component: () => // import('@/view/enterprise/enterprise-data/enterprise-data-atlas.vue') // }, // { // path: '/enterpriseSemiconductor', // name: 'enterpriseSemiconductor', // meta: { // icon: 'custom custom-gongkaijibenxinxi_b', // title: '半导体公司微图谱', // notCache: true // }, // component: () => // import('@/view/enterprise/semiconductor/semiconductorSearch.vue') // }, { path: '/enterpriseDataMerger', name: 'enterpriseDataMerger', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '并购事件图谱' }, component: () => import('@/view/enterprise/enterprise-data/enterprise-data-merger.vue') }, { path: '/enterpriseDatainvest', name: 'enterpriseDatainvest', meta: { icon: 'custom custom-gongkaijibenxinxi_b', title: '投资事件图谱' }, component: () => import('@/view/enterprise/invest/investSearch.vue') }, ] }, { path: '/financing', name: 'financing', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '融资大数据' }, component: parentView, children: [{ path: '/financingLease', name: 'financingLease', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '租赁融资' }, component: () => import('@/view/enterprise/financing/financing-lease.vue') }, { path: '/financingReceivable', name: 'financingReceivable', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '应收账款融资' }, component: () => import('@/view/enterprise/financing/financing-receivable.vue') }, { path: '/financingTrust', name: 'financingTrust', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '信托融资' }, component: () => import('@/view/enterprise/financing/financing-trust.vue') }, { path: '/financingPrivate', name: 'financingPrivate', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '资管私募融资' }, component: () => import('@/view/enterprise/financing/financing-private.vue') }, { path: '/financingMortgage', name: 'financingMortgage', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '动产抵质押' }, component: () => import('@/view/enterprise/financing/financing-mortgage.vue') }, { path: '/MovablePropertyRegistration', name: 'MovablePropertyRegistration', meta: { icon: 'custom custom-fapiaopiliangyanzhen_b', title: '其它动产权利登记' }, component: () => import('@/view/enterprise/financing/MovablePropertyRegistration.vue') }, ] }, // { // path: '/piaoData', // name: 'piaoData', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '票据大数据' // }, // component: parentView, // children: [ // { // path: '/piaoNotice', // name: 'piaoNotice', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '承兑人公告信息' // }, // component: () => // import('@/view/piaoData/piaoNotice.vue') // }, // { // path: '/piaoDetail', // name: 'piaoDetail', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '承兑人信用信息' // }, // component: () => // import('@/view/piaoData/piaoDetail.vue') // }, // { // path: '/piaoOverdue', // name: 'piaoOverdue', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '承兑人逾期' // }, // component: () => // import('@/view/piaoData/piaoOverdue.vue') // }, // { // path: '/piaoOverAlways', // name: 'piaoOverAlways', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '持续逾期' // }, // component: () => // import('@/view/piaoData/piaoOverAlways.vue') // }, // { // path: '/piaoNoInfo', // name: 'piaoNoInfo', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '信息未披露' // }, // component: () => // import('@/view/piaoData/piaoNolnfo.vue') // }, // { // path: '/piaoDelayInfo', // name: 'piaoDelayInfo', // meta: { // icon: 'custom custom-waibubeidanbao_b', // title: '信息延迟披露' // }, // component: () => // import('@/view/piaoData/piaoDelayInfo.vue') // }, // ] // }, { path: '/grade', name: 'grade', meta: { icon: 'custom custom-zhutifengxianxishu_b', title: '信用大数据' }, component: parentView, children: [{ path: '/gradeSubject', name: 'gradeSubject', meta: { icon: 'custom custom-zhutifengxianxishu_b', title: '主体信用评级' }, component: () => import('@/view/enterprise/grade/grade-subject.vue') }, { path: '/bankPunishNewEvent', name: 'bankPunishNewEvent', meta: { notCache: true, // access: ['no_admin', 'bankPunishNewEvent'], icon: 'custom custom-zhutifengxianxishu_b', title: '金融监管处罚' }, component: () => import('@/view/enterprise/grade/bankPunishEvent.vue') }, // { // path: '/gradeBond', // name: 'gradeBond', // meta: { // icon: 'custom custom-pinggu', // title: '债券信用评级' // }, // component: () => // import ('@/view/enterprise/grade/grade-bond.vue') // } ] } ] }, { path: '/characteristic', name: 'characteristic', meta: { icon: 'custom custom-tesezhuanti', title: '特色\n数据' }, component: Main, // component: parentView, // children: [ // { // path: '/regionShanghai', // name: 'regionShanghai', // meta: { // icon: 'custom custom-zhutiguanxifenxi_b', // title: '上海产业地图' // }, // component: () => // import('@/view/characteristic/region/region-shanghai.vue') // }, // { // path: '/regionGuangzhou', // name: 'regionGuangzhou', // meta: { // icon: 'custom custom-zhutiguanxifenxi_b', // title: '广州产业地图' // }, // component: () => // import('@/view/characteristic/region/region-guangzhou.vue') // } // ] children: [ { path: '/region', name: 'region', meta: { icon: 'custom custom-zhutiguanxifenxi_b', title: '地区产业' }, component: parentView, children: [ { path: '/regionShanghai', name: 'regionShanghai', meta: { icon: 'custom custom-zhutiguanxifenxi_b', title: '上海产业地图' }, component: () => import('@/view/characteristic/region/region-shanghai.vue') }, { path: '/regionGuangzhou', name: 'regionGuangzhou', meta: { icon: 'custom custom-zhutiguanxifenxi_b', title: '广州产业地图' }, component: () => import('@/view/characteristic/region/region-guangzhou.vue') } ] }, { path: '/policy', name: 'policy', meta: { icon: 'custom custom-xingbiao', title: '政策数据' }, component: parentView, children: [ { path: '/policyCountry', name: 'policyCountry', meta: { icon: 'custom custom-xingbiao', title: '国家政策待上线' }, component: () => import('@/view/characteristic/policy/policy-country.vue') }, // { // path: '/policyBeijing', // name: 'policyBeijing', // meta: { // icon: 'custom custom-xingbiao', // title: '北京政策待上线' // }, // component: () => // import('@/view/characteristic/policy/policy-beijing.vue') // }, // { // path: '/policyShanghai', // name: 'policyShanghai', // meta: { // icon: 'custom custom-xingbiao', // title: '上海政策待上线' // }, // component: () => // import('@/view/characteristic/policy/policy-shanghai.vue') // } ] }, ] }, { path: '/riskControl', name: 'riskControl', meta: { icon: 'custom custom-zhinengkefu', title: '智能\n风控' }, component: Main, children: [{ path: '/riskControlTool', name: 'riskControlTool', meta: { icon: 'custom custom-chuli', title: '风控工具' }, component: parentView, children: [ // { // path: '/riskControlReportORC', // name: 'riskControlReportORC', // meta: { // icon: 'custom custom-chuli', // title: '公司财报OCR' // }, // component: () => // import('@/view/risk-control/risk-control-tool/riskControlReportORC/risk-control-report-orc.vue') // }, { path: '/riskControlReportFK', name: 'riskControlReportFK', meta: { icon: 'custom custom-chuli', title: '公司财报智风控' }, component: () => import('@/view/risk-control/risk-control-tool/riskControlReportFK/risk-control-report-fk.vue') }, { path: '/rzd', name: 'rzd', meta: { icon: 'custom custom-chuli', title: '仁软智答GPT' }, component: () => import('@/view/risk-control/rzd/rzd.vue') }, { path: '/fingpt', name: 'fingpt', meta: { icon: 'custom custom-dayin', title: '仁软金融GPT' }, component: () => import('@/view/risk-control/risk-control-application/fingpt.vue') }, ] }, { path: '/riskControlApplication', name: 'riskControlApplication', meta: { icon: 'custom custom-dayin', title: '融资租赁' }, component: parentView, children: [ { path: '/rickControlQuantification', name: 'rickControlQuantification', meta: { icon: 'custom custom-dayin', title: '租赁公司智能风评' }, component: () => import('@/view/risk-control/risk-control-application/rentExchangeCompany.vue') }, { path: '/dueDiligence', name: 'dueDiligence', meta: { icon: 'custom custom-dayin', title: '租赁业务尽职调查' }, component: () => import('@/view/risk-control/risk-control-application/dueDiligence.vue') }, ] }, { path: '/stock', name: 'stock', meta: { icon: 'custom custom-81', title: '股票投资' }, component: parentView, children: [ { path: '/znxg', name: 'znxg', meta: { notCache: true, icon: 'custom custom-81', title: '市场数据智能选股' }, component: () => import('@/view/risk-control/risk-control-application/znxg.vue') }, { path: '/investmentAdvisory', name: 'investmentAdvisory', meta: { notCache: true, icon: 'custom custom-81', title: '上市公司智能投顾' }, component: () => import('@/view/risk-control/risk-control-application/investmentAdvisory.vue') }, ] }, ] }, { path: '/admin', name: 'admin', meta: { access: ['super_admin'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '系统\n管理' }, component: Main, children: [{ path: '/accountManagementsup', name: 'accountManagementsup', meta: { access: ['super_admin', 'accountManagement_s'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '账号管理' }, component: parentView, children: [{ path: '/accountManagement_s', name: 'accountManagement_s', meta: { icon: 'custom custom-pinggu', title: '机构管理员账号' }, component: () => import('@/view/admin/accountManagement/accountManagement.vue') } ] }, { path: '/parameterTable', name: 'parameterTable', meta: { access: ['super_admin', 'propertyInfoList_s', 'assetRecoveryStatement_s', 'baseRateTable_s'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '参数表维护' }, component: parentView, children: [ { path: '/assetRecoveryStatement_s', name: 'assetRecoveryStatement_s', meta: { icon: 'custom custom-zhanghuguanli', title: '主体性质风险系数' }, component: () => import('@/view/admin/parameterTable/propertyInfoList_s.vue') }, { path: '/baseRateTable_s', name: 'baseRateTable_s', meta: { icon: 'custom custom-zhanghuguanli', title: '资产可回收率预估表' }, component: () => import('@/view/admin/parameterTable/assetRecoveryStatement_s.vue') }, { path: '/propertyInfoList_s', name: 'propertyInfoList_s', meta: { icon: 'custom custom-zhanghuguanli', title: '基准利率期限结构表' }, component: () => import('@/view/admin/parameterTable/baseRateTable_s.vue') }, ] }, { path: '/dataManagement', name: 'dataManagement', meta: { access: ['super_admin'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '数据管理' }, component: parentView, children: [ { path: '/Industrial', name: 'Industrial', meta: { icon: 'custom custom-zhanghuguanli', title: '产业数据管理' }, component: () => import('@/view/admin/dataManagement/Industrial.vue') }, { path: '/MsemiconductorDetail', name: 'MsemiconductorDetail', meta: { icon: 'custom custom-zhanghuguanli', title: '半导体微图谱管理' }, component: () => import('@/view/admin/semiconductor/semiconductorDetail.vue') }, { path: '/addOrders', name: 'VIPmanage', meta: { icon: 'custom custom-zhanghuguanli', title: '会员套餐管理' }, component: () => import('@/view/admin/VIPManage.vue') }, { path: '/addOrders', name: 'addOrders', meta: { icon: 'custom custom-zhanghuguanli', title: '订单价格管理' }, component: () => import('@/view/admin/addOrders.vue') }, { path: '/supermanageOrders', name: 'supermanageOrders', meta: { icon: 'custom custom-zhanghuguanli', title: '订单综合管理' }, component: () => import('@/view/admin/supermanageOrders.vue') }, ] }, ] }, { path: '/parameterMaintenance', name: 'parameterMaintenance', meta: { access: ['company_admin'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '系统\n管理' }, component: Main, children: [{ path: '/accountManagementadmin', name: 'accountManagementadmin', meta: { access: ['company_admin', 'accountManagement'], notCache: true, icon: 'custom custom-zhanghuguanli', title: '账号管理' }, component: parentView, children: [{ path: '/accountManagement', name: 'accountManagement', meta: { icon: 'custom custom-zhanghuguanli', title: '机构员工账号' }, component: () => import('@/view/parameterMaintenance/accountManagement.vue') } ] }, { path: '/parameterTable', name: 'parameterTable', meta: { access: ['company_admin', 'assetRecoveryStatement', 'baseRateTable', 'ratingScale'], notCache: true, icon: 'custom custom-canshubiaoweihu_b', title: '参数表维护' }, component: parentView, children: [{ path: '/assetRecoveryStatement', name: 'assetRecoveryStatement', meta: { notCache: true, access: ['company_admin', 'assetRecoveryStatement'], icon: 'custom custom-zichanhuishoulvyugubiao', title: '资产可回收率预估表' }, component: () => import('@/view/parameterMaintenance/assetRecoveryStatement.vue') }, { path: '/baseRateTable', name: 'baseRateTable', meta: { notCache: true, access: ['company_admin', 'baseRateTable'], icon: 'custom custom-zichanchengbenbiao', title: '资金成本表' }, component: () => import('@/view/parameterMaintenance/baseRateTable.vue') }, { path: '/ratingScale', name: 'ratingScale', meta: { notCache: true, access: ['company_admin', 'ratingScale'], icon: 'custom custom-pingjizhubiaochi_b', title: '评级主标尺表' }, component: () => import('@/view/parameterMaintenance/ratingScale.vue') } ] }, ] }, { path: '/401', name: 'error_401', meta: { hideInMenu: true }, component: () => import('@/view/error-page/401.vue') }, { path: '/500', name: 'error_500', meta: { hideInMenu: true }, component: () => import('@/view/error-page/500.vue') }, { path: '*', name: 'error_404', meta: { hideInMenu: true }, component: () => import('@/view/error-page/404.vue') } ]