kefu.js 462B

1234567891011121314151617181920212223
  1. import Layout from '@/views/layout/Layout'
  2. //客服管理模块
  3. export default {
  4. alwaysShow: true,
  5. path: '/kefu',
  6. component: Layout,
  7. redirect: 'noredirect',
  8. name: 'kefu',
  9. meta: {
  10. title: '客服管理',
  11. icon: 'message'
  12. },
  13. children: [
  14. {
  15. path: '/kefu',
  16. component: () => import('@/scrm_pages/kefu'),
  17. name: 'kefuBox',
  18. meta: { title: '咨询管理', noCache: true }
  19. },
  20. ]
  21. }