index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <a-layout id="components-layout-demo-custom-trigger">
  3. <a-layout-sider v-model="collapsed" :trigger="null" collapsible>
  4. <div class="logo" />
  5. <a-menu theme="dark" mode="inline">
  6. <a-menu-item
  7. :key="index"
  8. v-for="(item, index) in router"
  9. @click="up(item.path)"
  10. >
  11. <a-icon type="user" />
  12. <span>
  13. {{ item.name }}
  14. </span>
  15. </a-menu-item>
  16. </a-menu>
  17. </a-layout-sider>
  18. <a-layout>
  19. <!-- <a-layout-header style="background: #fff; padding: 0">
  20. <a-icon
  21. class="trigger"
  22. :type="collapsed ? 'menu-unfold' : 'menu-fold'"
  23. @click="() => (collapsed = !collapsed)"
  24. />
  25. </a-layout-header> -->
  26. <a-layout-content
  27. :style="{
  28. margin: '24px 16px',
  29. padding: '24px',
  30. background: '#fff',
  31. minHeight: '280px',
  32. }"
  33. >
  34. <router-view />
  35. </a-layout-content>
  36. </a-layout>
  37. </a-layout>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. collapsed: false,
  44. router: [
  45. {
  46. path: "/cargoCharts",
  47. name: "航空货物关联统计图",
  48. },
  49. // {
  50. // path: "/cargoRelevanceTable",
  51. // name: "航空货物关联统计表",
  52. // },
  53. {
  54. path: "/cargoStatistics",
  55. name: "航空货物综合统计",
  56. },
  57. // {
  58. // path: "/cargoTable",
  59. // name: "航空货物综合统计表",
  60. // },
  61. {
  62. path: "/agent",
  63. name: "代理人信息统计",
  64. },
  65. // {
  66. // path: "/agentTable",
  67. // name: "代理人信息统计表",
  68. // },
  69. {
  70. path: "/securityChannel",
  71. name: "安检通道综合效率",
  72. },
  73. {
  74. path: "/comprehensive",
  75. name: "安检通道综合效率日月",
  76. }
  77. ],
  78. };
  79. },
  80. created() {},
  81. methods: {
  82. up(data) {
  83. console.log(data);
  84. this.$router.push(data);
  85. },
  86. },
  87. };
  88. </script>
  89. <style>
  90. #components-layout-demo-custom-trigger .trigger {
  91. font-size: 18px;
  92. line-height: 64px;
  93. padding: 0 24px;
  94. cursor: pointer;
  95. transition: color 0.3s;
  96. }
  97. #components-layout-demo-custom-trigger .trigger:hover {
  98. color: #1890ff;
  99. }
  100. #components-layout-demo-custom-trigger .logo {
  101. height: 32px;
  102. background: rgba(255, 255, 255, 0.2);
  103. margin: 16px;
  104. }
  105. </style>