chenrui  пре 2 година
родитељ
комит
3cf0c306fc
2 измењених фајлова са 34 додато и 0 уклоњено
  1. 6 0
      src/router/routes/routes-file-three.ts
  2. 28 0
      src/views/BasicsData/airportInfo/index.vue

+ 6 - 0
src/router/routes/routes-file-three.ts

@@ -20,6 +20,12 @@ const HomeRoutes = {
       meta: { title: "机场公司维护", elSvgIcon: "Fold", icon: "table" },
       component: () => import("@/views/BasicsData/airportCompany/index.vue"),
     },
+    {
+      path: "/BasicsData/airportInfo",
+      name: "AirportInfo",
+      meta: { title: "机场信息维护", elSvgIcon: "Fold", icon: "table" },
+      component: () => import("@/views/BasicsData/airportInfo/index.vue"),
+    },
     {
       path: "/BasicsData/deployNode",
       name: "DeployNode",

+ 28 - 0
src/views/BasicsData/airportInfo/index.vue

@@ -0,0 +1,28 @@
+<template>
+  <div class="airportInfo">
+    <div class="wrap">
+      <DataTable :is-auth="true" :is-statuser="true">
+        <template #header>
+          <div class="status flex-wrap">
+            <div class="manageTitle">机场信息维护</div>
+          </div>
+        </template>
+      </DataTable>
+    </div>
+  </div>
+</template>
+<script lang="ts">
+import { defineComponent } from "vue";
+import DataTable from "@/components/table2/index.vue";
+
+export default defineComponent({
+  components: {
+    DataTable,
+  },
+  setup() {},
+});
+</script>
+<style lang="scss" scoped>
+.airportInfo {
+}
+</style>