123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- /*
- * @Author: your name
- * @Date: 2021-07-22 15:04:09
- * @LastEditTime: 2022-10-11 11:12:48
- * @LastEditors: code4eat awesomedema@gmail.com
- * @Description: In User Settings Edit
- * @FilePath: /TracerMethodology_PC/config/routes.js
- */
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/Login',
- },
- ],
- },
- ],
- },
- {
- path: '/platformMana',
- name: '平台系统管理',
- icon: 'smile',
- routes: [
- {
- name: '角色管理',
- path: '/platformMana/roleManage',
- component: './platformMana/roleManage/index',
- },
- {
- name: '菜单管理',
- path: '/platformMana/menuManage',
- component: './platformMana/menuManage/index',
- },
- {
- path: '/platformMana/districtMana',
- name: '院区管理',
- icon: 'InsertRowLeftOutlined',
- component: './platformMana/districtMana/index',
- },
- ],
- },
- {
- path: '/baseSetting',
- name: '基础设置',
- icon: 'tool',
- routes: [
- {
- path: '/baseSetting/incomeCollectionSetting',
- name: '收入归集设置',
- icon: 'tool',
- component: './baseSetting/incomeCollectionSetting/index',
- },
- {
- path: '/baseSetting/reportProjectSetting',
- name: '报表项目设置',
- icon: 'tool',
- component: './baseSetting/reportProjectSetting/index',
- },
- {
- path: '/baseSetting/visitsAndBedDayCostSetting',
- name: '诊次/床日成本设置',
- icon: 'tool',
- component: './baseSetting/visitsAndBedDayCostSetting/index',
- },
- {
- path: '/baseSetting/wholeHospCostAndIncomeSet',
- name: '全院其他收支设置',
- icon: 'tool',
- component: './baseSetting/wholeHospCostAndIncomeSet/index',
- },
- ],
- },
- {
- path: '/costAccounting',
- name: '成本核算',
- icon: 'tool',
- routes: [
- {
- path: '/costAccounting/incomeCostDataImport',
- name: '收入成本数据导入',
- component: './costAccounting/incomeCostDataImport/index',
- },
- {
- path: '/costAccounting/beforeCollectionSearch',
- name: '归集前查询',
- component: './costAccounting/beforeCollectionSearch/index',
- },
- {
- path: '/costAccounting/incomeCollection',
- name: '收入归集',
- component: './costAccounting/incomeCollection/index',
- },
- {
- path: '/costAccounting/afterCollectionSearch',
- name: '归集后查询',
- component: './costAccounting/afterCollectionSearch/index',
- },
- {
- path: '/costAccounting/costShareParamsHandle',
- name: '月成本分摊参数值处理',
- component: './costAccounting/costShareParamsHandle/index',
- },
- {
- path: '/costAccounting/wholeHospIncomeAndCost',
- name: '全院其他收支',
- component: './costAccounting/wholeHospIncomeAndCost/index',
- },
- {
- path: '/costAccounting/beforeCostShareSearch',
- name: '成本分摊前查询',
- component: './costAccounting/beforeCostShareSearch/index',
- },
- {
- path: '/costAccounting/costShare',
- name: '成本分摊',
- component: './costAccounting/costShare/index',
- },
- {
- path: '/costAccounting/afterCostShareSearch',
- name: '成本分摊后查询',
- component: './costAccounting/afterCostShareSearch/index',
- },
- {
- path: '/costAccounting/costShareReportTable',
- name: '成本分摊报表',
- component: './costAccounting/costShareReportTable/index',
- },
- {
- path: '/costAccounting/wholeHospCostCalculate',
- name: '全院损益计算',
- component: './costAccounting/wholeHospCostCalculate/index',
- },
- {
- path: '/costAccounting/departmentCostCalculate',
- name: '科室损益计算',
- component: './costAccounting/departmentCostCalculate/index',
- },
- {
- path: '/costAccounting/unitCostCalculate',
- name: '单位成本计算',
- component: './costAccounting/departmentCostCalculate/index',
- },
- {
- path: '/costAccounting/zhenciCostCalculate',
- name: '诊次成本计算',
- component: './costAccounting/departmentCostCalculate/index',
- },
- {
- path: '/costAccounting/chuangriCostCalculate',
- name: '床日成本计算',
- component: './costAccounting/departmentCostCalculate/index',
- },
-
- ],
- },
- {
- path: '/reportTableExport',
- name: '报表输出',
- icon: 'tool',
- routes: [
- {
- path: '/reportTableExport/departmentOperatingReport',
- name: '科室经营报表',
- icon: 'tool',
- component: './reportTableExport/departmentOperatingReport/index',
- },
- {
- path: '/reportTableExport/unitCostReport',
- name: '单位成本报表',
- icon: 'tool',
- component: './reportTableExport/departmentOperatingReport/index',
- },
- {
- path: '/reportTableExport/zhenciCostReport',
- name: '诊次成本报表',
- icon: 'tool',
- component: './reportTableExport/departmentOperatingReport/index',
- },
- {
- path: '/reportTableExport/chuangriCostReport',
- name: '床日成本报表',
- icon: 'tool',
- component: './reportTableExport/departmentOperatingReport/index',
- },
- {
- path: '/reportTableExport/wholeHospOperatingReport',
- name: '全院经营报表',
- icon: 'tool',
- component: './reportTableExport/wholeHospOperatingReport/index',
- },
- ],
- },
- {
- path: '/UserMana',
- name: '用户管理',
- icon: 'tool',
- component: './UserMana/index',
- },
- // {
- // path: '/districtMana',
- // name: '院区管理',
- // icon: 'InsertRowLeftOutlined',
- // component: './districtMana/index',
- // },
- {
- path: '/apportionmentLevel',
- name: '分摊层级设置',
- icon: 'NodeExpandOutlined',
- component: './apportionmentLevel/index',
- },
- {
- path: '/DepartmentMana',
- name: '科室管理',
- icon: 'BorderOuterOutlined',
- component: './DepartmentMana/index',
- },
- {
- path: '/responsibilityCenter',
- name: '责任中心管理',
- icon: 'CopyrightOutlined',
- component: './responsibilityCenter/index',
- },
- {
- path: '/responsibilityCenterConnect',
- name: '责任中心对应',
- icon: 'CopyrightOutlined',
- component: './responsibilityCenterConnect/index',
- },
- {
- path: '/accountingSubject',
- name: '会计科目管理',
- icon: 'ProfileOutlined',
- component: './accountingSubject/index',
- },
- {
- path: '/costProjectMana',
- name: '成本收入项目管理',
- icon: 'AccountBookOutlined',
- component: './costProjectMana/index',
- },
- {
- path: '/accountingSubjectConnect',
- name: '会计科目对应',
- icon: 'ProfileOutlined',
- component: './accountingSubjectConnect/index',
- },
- {
- path: '/costAllocationParamsSetting',
- name: '成本分摊参数设置',
- icon: 'ControlOutlined',
- component: './costAllocationParamsSetting/index',
- },
- {
- path: '/costAllocationParamsConnect',
- name: '成本分摊参数设置对应',
- icon: 'ControlOutlined',
- component: './costAllocationParamsConnect/index',
- },
- {
- path: '/admin',
- name: 'admin',
- icon: 'crown',
- access: 'canAdmin',
- component: './Admin',
- routes: [
- {
- path: '/admin/sub-page',
- name: 'sub-page',
- icon: 'smile',
- component: './Welcome',
- },
- ],
- },
- {
- path: '/',
- redirect: '/costAccounting',
- },
- {
- component: './404',
- },
- ];
|