吉安感知网项目-前端
chenyao
2026-04-09 fd8b8e9002d5274ba9e5d35e2471d9a930794ed0
feat:无人机类型值对应名称
1 files modified
8 ■■■■ changed files
applications/drone-command/src/views/detectionCountermeasure/countermeasureEvaluation/index.vue 8 ●●●● patch | view | raw | blame | history
applications/drone-command/src/views/detectionCountermeasure/countermeasureEvaluation/index.vue
@@ -58,7 +58,11 @@
                <el-table class="command-table" :data="list">
                    <el-table-column type="index" width="64" show-overflow-tooltip label="序号" />
                    <el-table-column prop="droneName" show-overflow-tooltip width="130" label="无人机名称" />
                    <el-table-column prop="droneType" show-overflow-tooltip width="130" label="无人机类型" />
                    <el-table-column prop="droneType" show-overflow-tooltip width="130" label="无人机类型">
                        <template v-slot="{ row }">
                            {{ getDictLabel(row.droneType, dictObj.droneType) }}
                        </template>
                    </el-table-column>
                    <el-table-column prop="droneDeviceCode" show-overflow-tooltip width="140" label="设备编码" />
                    <el-table-column prop="findTime" show-overflow-tooltip width="156" label="发现时间" />
                    <el-table-column prop="counterEffect" show-overflow-tooltip width="120" label="反制效果">
@@ -181,7 +185,7 @@
// 获取字典
function getDictList() {
    getDictionaryByCode('deviceType,counterEffect').then(res => {
    getDictionaryByCode('deviceType, counterEffect, droneType').then(res => {
        dictObj.value = res.data.data
    })
}