order.js 778 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import LayoutIndex from '@/layout/Index.vue'
  2. export default[
  3. {
  4. path:'/order',
  5. component:LayoutIndex,
  6. name:'OrderIndex',
  7. meta:{
  8. title:'统计报表'
  9. },
  10. children:[
  11. {
  12. path:'orderList',
  13. component:()=>import('@/views/order/OrderList.vue'),
  14. name:'OrderList',
  15. meta:{
  16. title:'商品订单'
  17. }
  18. },
  19. {
  20. path:'paymentList',
  21. component:()=>import('@/views/order/PaymentList.vue'),
  22. name:'PaymentList',
  23. meta:{
  24. title:'支付明细'
  25. }
  26. },
  27. {
  28. path:'refundList',
  29. component:()=>import('@/views/order/RefundList.vue'),
  30. name:'RefundList',
  31. meta:{
  32. title:'退款明细'
  33. }
  34. }
  35. ]
  36. }
  37. ]