|
@@ -45,7 +45,7 @@
|
|
|
placeholder="请选择起飞机场"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in tableOptionser"
|
|
|
+ v-for="item in tableOption"
|
|
|
:key="item.v ? item.v : item.planDepartureApt"
|
|
|
:label="item.k ? item.k : item.planDepartureApt"
|
|
|
:value="item.v ? item.v : item.planDepartureApt"
|
|
@@ -66,7 +66,7 @@
|
|
|
placeholder="请选择降落机场"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in tableOptionser"
|
|
|
+ v-for="item in tableOption"
|
|
|
:key="item.v ? item.v : item.planDepartureApt"
|
|
|
:label="item.k ? item.k : item.planDepartureApt"
|
|
|
:value="item.v ? item.v : item.planDepartureApt"
|
|
@@ -361,6 +361,7 @@ const tableForms = reactive({
|
|
|
alarmSceneId: route.query.alarmSceneId,
|
|
|
event: "",
|
|
|
}); //弹窗内容
|
|
|
+const tableOption = ref<Array>([]); //下拉
|
|
|
const tableOptionser = ref<Array>([]); //下拉
|
|
|
const tableOptionbegin = ref<Array>([]); //下拉
|
|
|
const tableOptionend = ref<Array>([]); //下拉
|