44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
|
// +----------------------------------------------------------------------
|
|||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
import Layout from '@/layout'
|
|||
|
import { roterPre } from '@/settings'
|
|||
|
const freightRouter =
|
|||
|
{
|
|||
|
path: `${roterPre}/freight`,
|
|||
|
name: 'freight',
|
|||
|
meta: {
|
|||
|
title: '物流设置'
|
|||
|
},
|
|||
|
alwaysShow: true,
|
|||
|
component: Layout,
|
|||
|
children: [
|
|||
|
{
|
|||
|
path: 'express',
|
|||
|
name: 'FreightExpress',
|
|||
|
meta: {
|
|||
|
title: '物流公司',
|
|||
|
noCache: true
|
|||
|
},
|
|||
|
component: () => import('@/views/freight/express/index')
|
|||
|
},
|
|||
|
{
|
|||
|
path: 'city/list',
|
|||
|
name: 'FreightCityList',
|
|||
|
meta: {
|
|||
|
title: '城市数据',
|
|||
|
noCache: true
|
|||
|
},
|
|||
|
component: () => import('@/views/freight/city/index')
|
|||
|
}
|
|||
|
]
|
|||
|
}
|
|||
|
|
|||
|
export default freightRouter
|