| 123456789101112131415161718192021222324252627282930313233343536373839 |
- export default {
- routes: {
- path: '/shipping-template',
- name: 'ShippingTemplateModule',
- component: () => import('@/layout/index.vue'),
- meta: {
- title: '运费模板管理',
- icon: 'Van',
- permission: 'shipping_template'
- },
- children: [
- {
- path: 'list',
- name: 'ShippingTemplateList',
- component: () => import('./views/ShippingTemplateList.vue'),
- meta: {
- title: '运费模板列表',
- icon: 'List'
- }
- }
- ]
- },
- menus: [
- {
- path: '/shipping-template',
- title: '运费模板管理',
- icon: 'Van',
- permission: 'shipping_template',
- children: [
- {
- path: '/shipping-template/list',
- title: '运费模板列表',
- icon: 'List'
- }
- ]
- }
- ]
- }
|