diff --git a/src/api/api.js b/src/api/api.js
index 60d7b59..1ac2598 100644
--- a/src/api/api.js
+++ b/src/api/api.js
@@ -128,4 +128,15 @@ export function GetAllCData(data) {
return request({
url: '/api/FodAirPort/GetAllCData', method: 'get', params: data
});
+}
+
+export function InsertCListData(data) {
+ return request({
+ url: '/api/FodAirPort/InsertCListData', method: 'post', data: data
+ });
+}
+export function UpdateCData(data) {
+ return request({
+ url: '/api/FodAirPort/UpdateCData', method: 'post', data: data
+ });
}
\ No newline at end of file
diff --git a/src/views/index.vue b/src/views/index.vue
index 6f9044e..a4298e6 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -20,7 +20,16 @@ import {
setParasSignalpro,
getShildList,
addShildData,
- delShildData, StartWork, StopWork, RestartWork, ShutDownWork, getAllAirPort, getArea, GetAllCData
+ delShildData,
+ StartWork,
+ StopWork,
+ RestartWork,
+ ShutDownWork,
+ getAllAirPort,
+ getArea,
+ GetAllCData,
+ InsertCListData,
+ UpdateCData
} from "@/api/api";
import {useRouter} from "vue-router";
@@ -350,27 +359,28 @@ const RIGHT = defineComponent({