| | |
| | | <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="反制效果"> |
| | |
| | | |
| | | // 获取字典 |
| | | function getDictList() { |
| | | getDictionaryByCode('deviceType,counterEffect').then(res => { |
| | | getDictionaryByCode('deviceType, counterEffect, droneType').then(res => { |
| | | dictObj.value = res.data.data |
| | | }) |
| | | } |