修复已知的问题

This commit is contained in:
WORK\64751 2025-09-04 14:39:14 +08:00
parent 2a30217999
commit a6048b79d0
3 changed files with 11 additions and 2 deletions

View File

@ -174,7 +174,7 @@ const setCurrentData = (data) => {
//
littleViewMode.value = 1
littleViewModeName.value = '舱外画面'
small_area_showType.value = 'video_in'
small_area_showType.value = 'video_out'
//
isModifedSmallScreen.value = true
}

View File

@ -111,6 +111,10 @@ const queryAirLine_AirPort = async () => {
if (res[0].value.code == 0) {
//
currentAirPortInfo.value = res[0].value.data[0]
if (!currentAirPortInfo.value.online) {
//退
window.close()
}
airPortSocketStore.ceurrentAirPortData = currentAirPortInfo.value
airPortName.value = currentAirPortInfo.value.name
@ -191,7 +195,12 @@ const queryAirPort = async () => {
let res = await queryAirportApi(params)
if (res.code == 0) {
currentAirPortInfo.value = res.data[0]
if (!currentAirPortInfo.value.online) {
//退
window.close()
}
airPortSocketStore.ceurrentAirPortData = currentAirPortInfo.value
// console.log(currentAirPortInfo.value)
// currentAirPortInfo.value.status = 2

View File

@ -85,7 +85,7 @@ watch(
v-if="showType == 'map'"
id="virturalDrive_iframe_full"
ref="virturalDrive_iframe"
src="http://192.168.50.101:9009/examples/handler/VirturalDrive.html"
src="https://gisdata.t-aaron.com/virturalDrive/test/VirturalDrive.html"
class="w-full h-full"
@load="iframeLoaded"
></iframe>