From 1d552a3bad95caae4af15322df28e6240b797693 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Thu, 13 Aug 2026 15:32:06 +0800
Subject: [PATCH] feat: app视频封面图

---
 applications/drone-command/src/views/areaManage/sceneConfig/index.vue |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/applications/drone-command/src/views/areaManage/sceneConfig/index.vue b/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
index 1d744f4..0b407b4 100644
--- a/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
+++ b/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
@@ -1,7 +1,7 @@
 <template>
 	<basic-container>
 		<el-form ref="queryParamsRef" :model="searchParams" class="command-page-history-search">
-			<el-form-item label="场景名称" prop="sceneName">
+			<el-form-item label="配置名称" prop="sceneName">
 				<el-input
 					class="command-input"
 					v-model="searchParams.sceneName"
@@ -36,7 +36,7 @@
 		</el-form>
 
 		<div class="command-table-toolbar">
-			<el-button :icon="Plus" color="#284FE3" type="primary" @click="openForm('add')">新增</el-button>
+			<el-button :icon="Plus" color="#284FE3" type="primary" @click="openForm('add')">新增配置</el-button>
 			<el-button :icon="Delete" color="#1A2652" :disabled="!selectedIds.length" @click="handleDelete()">删除</el-button>
 		</div>
 
@@ -46,7 +46,7 @@
 					<el-table-column type="selection" width="46" />
 					<el-table-column type="index" show-overflow-tooltip width="64" label="序号" />
 
-					<el-table-column prop="sceneName" show-overflow-tooltip label="场景名称" />
+					<el-table-column prop="sceneName" show-overflow-tooltip label="配置名称" />
 					<el-table-column prop="sceneType" show-overflow-tooltip label="场景类型">
 						<template v-slot="{ row }">
 							{{ getDictLabel(row.sceneType, dictObj.CommandSceneType) }}
@@ -54,8 +54,8 @@
 					</el-table-column>
 					<el-table-column prop="areaCount" show-overflow-tooltip label="区域数量" />
 					<el-table-column prop="counterDeviceCount" show-overflow-tooltip label="反制设备数量" />
-					<el-table-column prop="detectDeviceCount" show-overflow-tooltip label="探测设备数量" />
-					<el-table-column label="操作" class-name="operation-btns">
+					<el-table-column prop="detectDeviceCount" show-overflow-tooltip label="侦测设备数量" />
+					<el-table-column label="操作" class-name="operation-btns" fixed="right">
 						<template v-slot="{ row }">
 							<el-link @click="openForm('view', row)">查看</el-link>
 							<el-link @click="openForm('edit', row)">编辑</el-link>
@@ -93,7 +93,7 @@
 import { useRoute } from 'vue-router'
 
 const initSearchParams = () => ({
-	sceneName: '', // 场景名称
+	sceneName: '', // 配置名称
 	sceneType: '', // 场景类型
 	current: 1, // 当前页
 	size: 10, // 每页大小
@@ -174,7 +174,7 @@
 
 // 获取字典
 function getDictList() {
-	getDictionaryByCode('CommandSceneType,deviceMode,areaType').then(res => {
+	getDictionaryByCode('CommandSceneType,deviceMode,areaType,deviceType').then(res => {
 		dictObj.value = res.data.data
 	})
 }

--
Gitblit v1.9.3