Browse Source

Merge branch 'master' of http://120.26.64.82:3000/BFFE/SZYGM1.0

chenrui  2 years ago
parent
commit
df3af2b016

+ 76 - 4
src/router/routes/routes-file-six.ts

@@ -4,20 +4,92 @@ const HomeRoutes = {
   path: "/baggageManagement",
   component: Layout,
   name: "baggageManagement",
-  redirect: "/baggageManagement/departureC",
+  redirect: "/baggageManagement/departure",
   //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
   meta: { title: "综合可视化", elSvgIcon: "Fold" },
   children: [
     {
-      path: "/baggageManagement/departureC",
+      path: "/baggageManagement/departure/station",
+      name: "InternalDeparture",
+      meta: { title: "国内出港", elSvgIcon: "Fold", icon: "table" },
+      component: () => import("@/views/baggageManagement/departure/station/index.vue"),
+      children: [
+        {
+          path: "/baggageManagement/departure/station",
+          name: "DepartureStation",
+          meta: { title: "国内出港航站视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/station/index.vue"),
+        },
+        {
+          path: "/baggageManagement/departure/flight",
+          name: "DepartureFlight",
+          meta: { title: "国内出港航班视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/flight/index.vue"),
+        },
+        {
+          path: "/baggageManagement/departure/waybill",
+          name: "DepartureWaybill",
+          meta: { title: "国内出港运单视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/waybill/index.vue"),
+        },
+        {
+          path: "/baggageManagement/departure/goods",
+          name: "DepartureGoods",
+          meta: { title: "国内出港行李视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/goods/index.vue"),
+        }
+      ]
+    },
+    {
+      path: "/baggageManagement/departure",
       name: "DepartureC",
-      meta: { title: "出港相关", elSvgIcon: "Fold", icon: "table" },
+      meta: { title: "国际出港", elSvgIcon: "Fold", icon: "table" },
       component: () => import("@/views/baggageManagement/departureC/index.vue"),
     },
+    {
+      path: "/baggageManagement/Arrival/station",
+      name: "InternalArrival",
+      meta: { title: "国内进港", elSvgIcon: "Fold", icon: "table" },
+      component: () => import("@/views/baggageManagement/departure/station/index.vue"),
+      children: [
+        {
+          path: "/baggageManagement/arrival/station",
+          name: "ArrivalStation",
+          meta: { title: "国内进港航站视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/station/index.vue"),
+        },
+        {
+          path: "/baggageManagement/arrival/flight",
+          name: "ArrivalFlight",
+          meta: { title: "国内进港航班视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/flight/index.vue"),
+        },
+        {
+          path: "/baggageManagement/arrival/waybill",
+          name: "ArrivalWaybill",
+          meta: { title: "国内进港运单视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/waybill/index.vue"),
+        },
+        {
+          path: "/baggageManagement/arrival/goods",
+          name: "ArrivalGoods",
+          meta: { title: "国内进港行李视图", elSvgIcon: "Fold", icon: "table" },
+          component: () =>
+            import("@/views/baggageManagement/departure/goods/index.vue"),
+        }
+      ]
+    },
     {
       path: "/baggageManagement/arrival",
       name: "Arrival",
-      meta: { title: "进港相关", elSvgIcon: "Fold", icon: "table" },
+      meta: { title: "国际进港", elSvgIcon: "Fold", icon: "table" },
       component: () => import("@/views/baggageManagement/arrival/index.vue"),
     },
     {

+ 0 - 0
src/views/baggageManagement/departureC/index.vue → src/views/baggageManagement/departure/flight/index.vue


+ 11 - 0
src/views/baggageManagement/departure/goods/index.vue

@@ -0,0 +1,11 @@
+<template>
+  <div></div>
+</template>
+<script lang="ts">
+import { defineComponent } from "vue";
+
+export default defineComponent({
+  setup() {},
+});
+</script>
+<style lang="scss" scoped></style>

+ 11 - 0
src/views/baggageManagement/departure/index.vue

@@ -0,0 +1,11 @@
+<template>
+  <div></div>
+</template>
+<script lang="ts">
+import { defineComponent } from "vue";
+
+export default defineComponent({
+  setup() {},
+});
+</script>
+<style lang="scss" scoped></style>

+ 11 - 0
src/views/baggageManagement/departure/station/index.vue

@@ -0,0 +1,11 @@
+<template>
+  <div></div>
+</template>
+<script lang="ts">
+import { defineComponent } from "vue";
+
+export default defineComponent({
+  setup() {},
+});
+</script>
+<style lang="scss" scoped></style>

+ 11 - 0
src/views/baggageManagement/departure/waybill/index.vue

@@ -0,0 +1,11 @@
+<template>
+  <div></div>
+</template>
+<script lang="ts">
+import { defineComponent } from "vue";
+
+export default defineComponent({
+  setup() {},
+});
+</script>
+<style lang="scss" scoped></style>