123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/Dialysisanalysis',
- component: Layout,
- redirect: 'noredirect',
- name: 'Dialysisanalysis',
- alwaysShow: true,
- meta: {
- title: '透析分析',
- icon: 'statistics'
- },
- children: [
- {
- path: '/Dialysisanalysis/qualitycontrol/thyroidGland',
- component: () => import('@/xt_pages/Dialysisanalysis/qualitycontrol/thyroidGland'),
- name: 'thyroidGland',
- meta: {
- title: '甲状旁腺激素分析',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/hemoglobin',
- component: () => import('@/xt_pages/Dialysisanalysis/hemoglobin/index'),
- name: 'index',
- meta: {
- title: '血红蛋白',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/bloodPotassium',
- component: () => import('@/xt_pages/Dialysisanalysis/bloodPotassium/index'),
- name: 'index',
- meta: {
- title: '血钾',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/albumin',
- component: () => import('@/xt_pages/Dialysisanalysis/albumin/index'),
- name: 'index',
- meta: {
- title: '白蛋白',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/bloodPhosphorus',
- component: () => import('@/xt_pages/Dialysisanalysis/bloodPhosphorus/index'),
- name: 'index',
- meta: {
- title: '血磷',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/calcium',
- component: () => import('@/xt_pages/Dialysisanalysis/calcium/index'),
- name: 'index',
- meta: {
- title: '钙',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/platelets',
- component: () => import('@/xt_pages/Dialysisanalysis/platelets/index'),
- name: 'index',
- meta: {
- title: '血小板',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/otherIndicators',
- component: () => import('@/xt_pages/Dialysisanalysis/otherIndicators/index'),
- name: 'index',
- meta: {
- title: '其他指标',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/nonnumerical',
- component: () => import('@/xt_pages/Dialysisanalysis/nonnumerical'),
- name: 'nonnumerical',
- meta: {
- title: '非数值类的列表展示',
- noCache: true
- }
- },
- {
- path: '/Dialysisanalysis/dialysis_index',
- component: () => import('@/xt_pages/Dialysisanalysis/dialysis_index'),
- name: 'dialysis_index',
- meta: {
- title: '透析指标详情',
- noCache: true
- }
- },
-
-
- ]
- }
|