123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- import Vue from 'vue'
- import Router from 'vue-router'
- import Index from '@/components/Index'
- import DocLogin from '@/components/DocLogin'
- import UserAgree from '@/components/UserAgree'
- import DocIndex from '@/components/DocIndex'
- import RegPatinfo from '@/components/RegPatinfo'
- import RegPatpro from '@/components/RegPatpro'
- import DiagCalc from '@/components/DiagCalc'
- import DiagCalcShow from '@/components/DiagCalcShow'
- import SolutionPkLine from '@/components/SolutionPkLine'
- import PatIndex from '@/components/PatIndex'
- import PatClockIn from '@/components/PatClockIn'
- import PatClockInSuc from '@/components/PatClockInSuc'
- import PatCaseList from '@/components/PatCaseList'
- import ProCaseList from '@/components/ProCaseList'
- import PatInjectionList from '@/components/PatInjectionList'
- import PatRegister from '@/components/PatRegister'
- import PatCxsjLine from '@/components/PatCxsjLine'
- import PreTraitCase from '@/components/PreTraitCase'
- import ShowAndSaveCase from '@/components/ShowAndSaveCase'
- import PatClockBleed from '@/components/PatClockBleed'
- import PatClockInBleedSuc from '@/components/PatClockInBleedSuc'
- import PatBleedList from '@/components/PatBleedList'
- import PatBleedCount from '@/components/PatBleedCount'
- import PatGjBleedCount from '@/components/PatGjBleedCount'
- import Notice from '@/components/Notice'
- Vue.use(Router)
- export default new Router({
- routes: [
- {
- path: '/',
- name: '首页',
- component: Index
- },
- {
- path: '/docLogin',
- name: '医生登录',
- component: DocLogin
- },
- {
- path: '/agreedoc',
- name: '用户隐私条款',
- component: UserAgree
- },
- {
- path: '/docindex',
- name: '医生首页',
- component: DocIndex
- },
- {
- path: '/notice',
- name: '消息列表',
- component: Notice
- },
- {
- path: '/regpatinfo',
- name: '录入患者信息',
- component: RegPatinfo
- },
- {
- path: '/regpatpro',
- name: '录入患者使用产品',
- component: RegPatpro
- },
- {
- path: '/diagcalc',
- name: '动力学检测',
- component: DiagCalc
- },
- {
- path: '/diagcalcshow',
- name: '动力学检测展示',
- component: DiagCalcShow
- },
- {
- path: '/showandsavecase',
- name: '动力学检测展示',
- component: ShowAndSaveCase
- },
- {
- path: '/solutionpkline',
- name: '预防治疗方案pk曲线',
- component: SolutionPkLine
- },
- {
- path: '/patindex',
- name: '患者首页',
- component: PatIndex
- },
- {
- path: '/patclockin',
- name: '患者注射打卡',
- component: PatClockIn
- },
- {
- path: '/patclockinsuc',
- name: '患者注射打卡成功',
- component: PatClockInSuc
- },
- {
- path: '/patclockbleed',
- name: '患者出血打卡',
- component: PatClockBleed
- },
- {
- path: '/patclockbleedsuc',
- name: '患者出血打卡成功',
- component: PatClockInBleedSuc
- },
- {
- path: '/patbleedlist',
- name: '出血记录',
- component: PatBleedList
- },
- {
- path: '/patbleedcount',
- name: '出血次数统计',
- component: PatBleedCount
- },
- {
- path: '/patgjbleedcount',
- name: '关节出血次数统计',
- component: PatGjBleedCount
- },
- {
- path: '/patcaselist',
- name: '病例管理',
- component: PatCaseList
- },
- {
- path: '/procaselist',
- name: '方案列表',
- component: ProCaseList
- },
- {
- path: '/patinjectionlist',
- name: '注射记录',
- component: PatInjectionList
- },
- {
- path: '/patregister',
- name: '用户注册',
- component: PatRegister
- },
- {
- path: '/patcxsjline',
- name: '病人采血时间曲线',
- component: PatCxsjLine
- },
- {
- path: '/pretraitcase',
- name: '预防治疗参考方案',
- component: PreTraitCase
- },
- // {
- // path: '/map',
- // name: '世界地图',
- // component: WorldMapNew
- // },
- ]
- })
|