From 9c1d136e4f5ed9b5bce100147edbb52486da985a Mon Sep 17 00:00:00 2001
From: zmc <zmc_li@foxmail.com>
Date: 星期五, 08 十二月 2023 13:57:32 +0800
Subject: [PATCH] 对飞行巡检和审核辅助对话框逻辑写成组件

---
 src/views/exception/FlightInspection.vue |   27 ++++++---------------------
 1 files changed, 6 insertions(+), 21 deletions(-)

diff --git a/src/views/exception/FlightInspection.vue b/src/views/exception/FlightInspection.vue
index 3f32e20..39a07e9 100644
--- a/src/views/exception/FlightInspection.vue
+++ b/src/views/exception/FlightInspection.vue
@@ -1,27 +1,12 @@
 <script>
-  import FlightInspection1 from '@/views/exception/components/FlightInspection1.vue'
-  export default {
-    components: {
-    FlightInspection1
-  },
-    data() {
-      return{
-        
-      }
-    },
-    mounted() {
-
-    },
-    methods: {
-
-     }
+import CompFlightInspection from '@/views/exception/components/CompFlightInspection.vue'
+export default {
+  components: {
+    CompFlightInspection
+  }
 }
 </script>
 
 <template>
-  <FlightInspection1  :show-all="true"> </FlightInspection1>
+  <CompFlightInspection :show-all="true"> </CompFlightInspection>
 </template>
-
-<style  scoped>
-
-</style>
\ No newline at end of file

--
Gitblit v1.9.3