You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
709 B
34 lines
709 B
import Index from "@/views/otc/index";
|
|
import detail from "@/views/otc/detail";
|
|
import order from "@/views/otc/order";
|
|
import ad from "@/views/otc/ad";
|
|
import pays from "@/views/otc/pays";
|
|
export default [{
|
|
path: '/otc',
|
|
redirect: '/otc/index'
|
|
}, {
|
|
name: "otc",
|
|
path: "/otc/index",
|
|
component: Index
|
|
},
|
|
{
|
|
name: "otcDetail",
|
|
path: "/otc/detail",
|
|
component: detail
|
|
},
|
|
{
|
|
name: "otcOrder",
|
|
path: "/otc/order",
|
|
component: order
|
|
},
|
|
{
|
|
name: "otcAd",
|
|
path: "/otc/ad",
|
|
component: ad
|
|
},
|
|
{
|
|
name: "otcPays",
|
|
path: "/otc/pays",
|
|
component: pays
|
|
}
|
|
]
|