| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * Limit Purchase Module - 限购管理模块
- */
- export default {
- // 路由配置
- routes: {
- path: '/limit_purchase',
- name: 'LimitPurchaseModule',
- component: () => import('@/layout/index.vue'),
- redirect: '/limit_purchase/rule',
- meta: {
- title: '限购管理',
- icon: 'Goods',
- permission: 'limit_purchase'
- },
- children: [
- {
- path: 'rule',
- name: 'LimitPurchaseRule',
- component: () => import('./views/LimitPurchaseRule.vue'),
- meta: {
- title: '限购规则管理',
- icon: 'List',
- keepAlive: true
- }
- }
- ]
- },
- // 菜单配置
- menus: [
- {
- path: '/limit_purchase',
- title: '限购管理',
- icon: 'Goods',
- permission: 'limit_purchase',
- children: [
- {
- path: '/limit_purchase/rule',
- title: '限购规则管理',
- icon: 'List'
- }
- ]
- }
- ]
- }
|