forked from drone/command-center-dashboard

罗广辉
2025-04-21 2800fa4f32f3900509cb4d6eefaf2bfaf54efdd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!-- 机巢状态 -->
<template>
    <CommonTitle title="机巢状态" @details="detailsFun" />
    <div :style="{ marginLeft: pxToRem(14) }">
        <div class="machine-status">
            <div class="info">
                <img src="../../../../assets/images/signMachineNest/machineRight/wrj.png" alt="" />
                <div class="info-right">
                    <!-- <div class="name">{{ osdVisible?.callsign || '--' }}</div> -->
                    <div class="name">{{ dockDetails?.nickname || '--' }}</div>
                    <div class="wz">
                        <span class="left">当前位置:</span>
                        <span class="right">{{ detailInfo.longitude }},{{ detailInfo.latitude }}</span>
                    </div>
                    <div class="close-wb">
                        <div class="close" :class="AircraftStatus == undefined ? '' : 'other'">
                            {{ AircraftStatus == undefined ? '舱内关机' : AircraftStatus }}
                        </div>
                        <!-- <div class="wb">需要维保</div> -->
                    </div>
                </div>
            </div>
            <div class="status">
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/height.png" alt="" />
                        <span class="text">实时真高</span>
                    </div>
                    <div class="text-data">
                        {{ detailInfo.height || '--' }}
                        <span class="text">米</span>
                    </div>
                </div>
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/speed.png" alt="" />
                        <span class="text">飞行速度</span>
                    </div>
                    <div class="text-data">
                        {{ detailInfo.horizontal_speed }}
                        <span class="text">米/秒</span>
                    </div>
                </div>
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/signal.png" alt="" />
                        <span class="text">信号强度</span>
                    </div>
                    <div class="text-data">{{ detailInfo.quality }}</div>
                </div>
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/electricity.png" alt="" />
                        <span class="text">电池电量</span>
                    </div>
                    <div v-if="drone_charge_state.capacity_percent != 0" class="text-data">
                        {{ drone_charge_state.capacity_percent }}
                        <span class="text">%</span>
                    </div>
                    <div v-else class="text-data">
                        {{ detailInfo.capacity_percent }}
                        <span class="text">%</span>
                    </div>
                </div>
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/distance.png" alt="" />
                        <span class="text">飞行距离</span>
                    </div>
                    <div class="text-data">
                        {{ singleTotal.flight_mileage }}
                        <span class="text">km</span>
                    </div>
                </div>
                <div class="card">
                    <div>
                        <img src="../../../../assets/images/signMachineNest/machineRight/duration.png" alt="" />
                        <span class="text">飞行时长</span>
                    </div>
                    <div class="text-data">
                        {{ singleTotal.hour_count }}
                        <span class="text">h</span>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <MachineTableDetails v-model:show="isShowDetails" />
</template>
 
<script setup>
import CommonTitle from '@/components/CommonTitle.vue'
import { EDeviceTypeName } from '@/utils/staticData/enums.js'
import { EModeCode, EDockModeText, EModeText } from '@/utils/staticData/device'
import { getLnglatAltitude } from '@/utils/cesium/mapUtil.js'
import { useStore } from 'vuex'
import MachineTableDetails from '@/views/SignMachineNest/MachineRight/MachineStatus/MachineTableDetails/MachineTableDetails.vue'
 
// 获取机巢信息
const wsInfo = inject('wsInfo')
const dockDetails = inject('dockDetails')
let device_osd_info = computed(() => wsInfo.value?.device_osd || {})
let device_osd_host = computed(() => device_osd_info?.value?.data?.host || {})
let dock_osd_info = computed(() => wsInfo.value?.dock_osd || {})
let dock_osd_host = computed(() => dock_osd_info.value?.data?.host || {})
// 单个机巢统计数据
const singleTotal = inject('singleTotal')
// 是否展示机机巢状态详情
let isShowDetails = ref(false)
 
let drone_charge_state = ref({
    capacity_percent: '--',
    state: 0,
})
let AircraftStatus = ref(null)
let detailInfo = ref({
    longitude: '--',
    latitude: '--',
    home_distance: '--',
    quality: '--',
    horizontal_speed: '--',
    height: '--',
    remain_flight_time: '--',
    capacity_percent: '--',
})
let quality = ref(['弱', '较弱', '中等', '较强', '强'])
 
// 监听实时信息
watch(
    device_osd_host,
    newValue => {
        if (!newValue) return
        if (newValue?.mode_code === 14) return
        if (Object.keys(newValue).length === 0) return
        detailInfo.value.longitude = newValue?.longitude.toFixed(6) || '--'
        detailInfo.value.latitude = newValue?.latitude.toFixed(6) || '--'
        getLnglatAltitude(Number(detailInfo.value.longitude), Number(detailInfo.value.latitude), window.$viewer).then(
            res => {
                const height = newValue?.height - res?.height
                //针对西安实时高度进行降低
                const wId = localStorage.getItem('bs_workspace_id')
                if (wId === 'f47ac10b-58cc-4372-a567-0e02b2c3d479') {
                    detailInfo.value.height = reduceHeight(height)
                } else {
                    detailInfo.value.height = height.toFixed(1) || '--'
                }
 
                detailInfo.value.quality = quality.value[newValue?.position_state.quality - 1] || '--'
                detailInfo.value.horizontal_speed = newValue?.horizontal_speed.toFixed(1) || '--'
                detailInfo.value.remain_flight_time = (newValue?.battery.remain_flight_time / 60).toFixed(0) || '--'
                detailInfo.value.capacity_percent = (newValue?.battery.capacity_percent).toFixed(0) || '--'
            }
        )
    },
    { immediate: true, deep: true }
)
 
// EDeviceTypeName.Dock
// 获取最新机场状态
watch(
    wsInfo,
    () => {
        if (device_osd_host.value?.mode_code !== undefined) {
            AircraftStatus.value = EModeText?.[device_osd_host.value?.mode_code] || '--'
        }
        // 飞机在线时取飞机中的电量
        if (device_osd_host.value?.battery) {
            drone_charge_state.value = {
                capacity_percent: device_osd_host.value.battery.capacity_percent,
                state: device_osd_host.value.battery.landing_power,
            }
        }
        if (device_osd_host.value?.mode_code === undefined || device_osd_host.value?.mode_code === 14) {
            detailInfo.value = {
                longitude: '--',
                latitude: '--',
                home_distance: '--',
                quality: '--',
                horizontal_speed: '--',
                remain_flight_time: '--',
                height: '--',
                capacity_percent: '--',
            }
        }
    },
    { immediate: true, deep: true }
)
 
const reduceHeight = height => {
    if (!Number(height)) return '--'
    let theFinheight = 0
    if (height < 120) {
        theFinheight = height
    } else if (height > 220) {
        theFinheight = height - 110
    } else if (height > 210) {
        theFinheight = height - 100
    } else if (height > 200) {
        theFinheight = height - 90
    } else if (height > 190) {
        theFinheight = height - 80
    } else if (height > 180) {
        theFinheight = height - 70
    } else if (height > 170) {
        theFinheight = height - 60
    } else if (height > 160) {
        theFinheight = height - 50
    } else if (height > 150) {
        theFinheight = height - 40
    } else if (height > 140) {
        theFinheight = height - 30
    } else if (height > 130) {
        theFinheight = height - 20
    } else if (height > 120) {
        theFinheight = height - 10
    }
    return theFinheight.toFixed(1)
}
 
// 详情
const detailsFun = () => {
    isShowDetails.value = true
}
</script>
 
<style lang="scss" scoped>
.machine-status {
    width: 390px;
    height: 230px;
    background: linear-gradient(270deg, #1f3e7a 0%, rgba(31, 62, 122, 0.35) 79%, rgba(31, 62, 122, 0) 100%);
    opacity: 0.85;
    margin: 2px 0 13 0;
 
    padding: 8px 0px 20px 18px;
    .info {
        display: flex;
        // justify-content: ce;
        height: 88px;
        display: flex;
        align-items: center;
        img {
            width: 94px;
            height: 88px;
            margin-right: 22px;
        }
        .info-right {
            .name {
                width: 184px;
                height: 31px;
                font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
                font-weight: 400;
                font-size: 24px;
                color: #0be5f5;
                line-height: 28px;
                overflow: hidden; // 添加溢出隐藏
                text-overflow: ellipsis; // 显示省略号
                white-space: nowrap; // 不换行
            }
            .wz {
                font-family: Source Han Sans CN, Source Han Sans CN;
                font-size: 14px;
                color: #ffffff;
                line-height: 16px;
                .left {
                    width: 70px;
                    height: 21px;
                    font-weight: 400;
                    opacity: 0.6;
                }
                .right {
                    width: 100px;
                    height: 21px;
                    font-weight: bold;
                }
            }
            .close-wb {
                display: flex;
                margin-top: 10px;
                text-align: center;
                line-height: 16px;
                .close {
                    width: 60px;
                    height: 20px;
                    background: rgba(255, 178, 106, 0.2);
                    border-radius: 4px 4px 4px 4px;
                    border: 1px solid #ffb26a;
                    color: #ffb26a;
                    margin-right: 10px;
                }
                .other {
                    border: 1px solid #8effac;
                    color: #8effac;
                }
                .wb {
                    width: 60px;
                    height: 20px;
                    background: rgba(255, 106, 106, 0.2);
                    border-radius: 4px 4px 4px 4px;
                    border: 1px solid #ff6a6a;
                    color: #ff6a6a;
                }
            }
        }
    }
    .status {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        margin-top: 18px;
        .card {
            width: calc(33.33% - 14px);
        }
        img {
            width: 16px;
            height: 16px;
            // margin-right: 0px;
            // margin-top: 2px;
        }
        .text {
            width: 56px;
            height: 21px;
            font-family: Source Han Sans CN, Source Han Sans CN;
            font-weight: 400;
            font-size: 14px;
            color: #ffffff;
            line-height: 16px;
        }
        .text-data {
            // width: 40px;
            margin-left: 20px;
            height: 23px;
            font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
            font-weight: 400;
            font-size: 18px;
            color: #0be5f5;
            line-height: 21px;
        }
    }
}
</style>