BusRouter.js 611 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7
import Cptopn from "./Cptopn"
import Ditame from "./Ditame"
import Ditopn from "./Ditopn"
import Office from "./Office"
import Sptsel from "./Sptsel"
import Trnrel from "./Trnrel"
import Tstopn from "./Tstopn"
liuyunfeng committed
8
import Trndtl from "./Trnrel/Trndtl"
fukai committed
9 10 11 12 13 14 15 16

const BusRouter =  [
    {path:'cptopn',component:Cptopn},
    {path:'ditame',component:Ditame},
    {path:'ditopn',component:Ditopn},
    {path:'office',component:Office},
    {path:'sptsel',component:Sptsel},
    {path:'trnrel',component:Trnrel},
liuyunfeng committed
17
    {path:'trndtl',query:'inr',component:Trndtl},
fukai committed
18 19 20
    {path:'tstopn',component:Tstopn},
]
export default BusRouter