settledIn/src/router/modules/freight.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-03-22 15:48:25 +08:00
// +----------------------------------------------------------------------
// | 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