From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整

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

diff --git a/applications/drone-command/src/views/areaManage/sceneConfig/index.vue b/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
index 374b71d..e0bca9e 100644
--- a/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
+++ b/applications/drone-command/src/views/areaManage/sceneConfig/index.vue
@@ -1,9 +1,9 @@
 <template>
 	<basic-container>
-		<el-form ref="queryParamsRef" :model="searchParams" class="ztzf-page-history-search">
-			<el-form-item label="场景名称" prop="sceneName">
+		<el-form ref="queryParamsRef" :model="searchParams" class="command-page-history-search">
+			<el-form-item label="配置名称" prop="sceneName">
 				<el-input
-					class="ztzf-data-cockpit-search-input"
+					class="command-input"
 					v-model="searchParams.sceneName"
 					placeholder="请输入"
 					clearable
@@ -13,33 +13,15 @@
 
 			<el-form-item label="场景类型" prop="sceneType">
 				<el-select
-					class="ztzf-data-cockpit-select"
-					popper-class="ztzf-data-cockpit-select-popper"
+					class="command-select"
+					popper-class="command-select-popper"
 					v-model="searchParams.sceneType"
 					placeholder="请选择"
 					clearable
 					@change="handleSearch"
 				>
 					<el-option
-						v-for="item in dictObj.sceneType"
-						:key="item.dictKey"
-						:label="item.dictValue"
-						:value="item.dictKey"
-					/>
-				</el-select>
-			</el-form-item>
-
-			<el-form-item label="场景状态" prop="status">
-				<el-select
-					class="ztzf-data-cockpit-select"
-					popper-class="ztzf-data-cockpit-select-popper"
-					v-model="searchParams.status"
-					placeholder="请选择"
-					clearable
-					@change="handleSearch"
-				>
-					<el-option
-						v-for="item in dictObj.sceneStatus"
+						v-for="item in dictObj.CommandSceneType"
 						:key="item.dictKey"
 						:label="item.dictValue"
 						:value="item.dictKey"
@@ -53,33 +35,26 @@
 			</el-form-item>
 		</el-form>
 
-		<div class="ztzf-table-toolbar">
-			<el-button :icon="Plus" color="#284FE3" type="primary" @click="openForm('add')">新增</el-button>
-			<el-button type="danger" :disabled="!selectedIds.length" @click="handleDelete()">删除</el-button>
+		<div class="command-table-toolbar">
+			<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>
 
-		<div class="ztzf-table-container" v-loading="loading" element-loading-background="rgba(5, 5, 15, 0.6)">
-			<div class="ztzf-table-content ztzf-table-content-bg">
-				<el-table class="ztzf-data-cockpit-table" :data="list" @selection-change="handleSelectionChange">
+		<div class="command-table-container" v-loading="loading" element-loading-background="rgba(5, 5, 15, 0.6)">
+			<div class="command-table-content command-table-content-bg">
+				<el-table class="command-table" :data="list" @selection-change="handleSelectionChange">
 					<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 width="130" label="场景名称" />
-					<el-table-column prop="sceneType" show-overflow-tooltip width="120" 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.sceneType) }}
+							{{ getDictLabel(row.sceneType, dictObj.CommandSceneType) }}
 						</template>
 					</el-table-column>
-					<el-table-column show-overflow-tooltip width="150" label="指挥点位置">
-						<template v-slot="{ row }">
-							{{ formatLocation(row) }}
-						</template>
-					</el-table-column>
-					<el-table-column prop="defenseLeader" show-overflow-tooltip width="120" label="防控负责人" />
-					<el-table-column prop="leaderPhone" show-overflow-tooltip width="140" label="防控负责人电话" />
-					<el-table-column prop="areaCount" show-overflow-tooltip width="110" label="区域数量" />
-					<el-table-column prop="counterDeviceCount" show-overflow-tooltip width="120" label="反制设备数量" />
-					<el-table-column prop="detectDeviceCount" show-overflow-tooltip width="120" label="探测设备数量" />
+					<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">
 						<template v-slot="{ row }">
 							<el-link @click="openForm('view', row)">查看</el-link>
@@ -90,9 +65,9 @@
 				</el-table>
 			</div>
 
-			<div class="ztzf-table-pagination">
+			<div class="command-table-pagination">
 				<el-pagination
-					popper-class="ztzf-data-cockpit-select-popper"
+					popper-class="command-select-popper"
 					v-model:current-page="searchParams.current"
 					v-model:page-size="searchParams.size"
 					layout="total, prev, pager, next, sizes"
@@ -107,30 +82,32 @@
 </template>
 
 <script setup>
-import { Search, RefreshRight, Plus } from '@element-plus/icons-vue'
+import { Search, RefreshRight, Plus, Delete } from '@element-plus/icons-vue'
 import { nextTick, onMounted, provide, ref } from 'vue'
 import { ElMessage, ElMessageBox } from 'element-plus'
 import { fwDefenseScenePageApi, fwDefenseSceneRemoveApi } from './sceneConfigApi'
 import FormDiaLog from './FormDiaLog.vue'
 import { getDictionaryByCode } from '@/api/system/dictbiz'
 import { getDictLabel } from '@ztzf/utils'
+import { saveOperationLog } from '@ztzf/apis'
+import { useRoute } from 'vue-router'
 
 const initSearchParams = () => ({
-	sceneName: '', // 场景名称
+	sceneName: '', // 配置名称
 	sceneType: '', // 场景类型
-	status: '', // 场景状态
 	current: 1, // 当前页
 	size: 10, // 每页大小
 })
 
 const searchParams = ref(initSearchParams()) // 查询参数
 const total = ref(0) // 总条数
-const loading = ref(false) // 列表加载中
+const loading = ref(true) // 列表加载中
 const list = ref([]) // 列表数据
 const selectedIds = ref([]) // 勾选的ID列表
 const queryParamsRef = ref(null) // 查询表单实例
 const dialogRef = ref(null) // 弹框实例
 const dialogVisible = ref(false)
+const route = useRoute()
 
 // 获取列表
 async function getList() {
@@ -160,9 +137,19 @@
 // 删除
 async function handleDelete(row) {
 	const tips = row ? '该条' : '选中的项'
-	await ElMessageBox.confirm(`确认删除${tips}吗?`, '提示', { type: 'warning' })
+	await ElMessageBox.confirm(`确认删除${tips}吗?`, '提示', {
+		type: 'warning',
+		customClass: 'command-page-view-message-box',
+		confirmButtonClass: 'command-message-box-confirm',
+		cancelButtonClass: 'command-message-box-cancel',
+	})
 	const ids = row ? row.id : selectedIds.value.join(',')
 	await fwDefenseSceneRemoveApi({ ids })
+	saveOperationLog({
+		requestUri: route.path,
+		title: `${route.name || '场景配置管理'}-删除`,
+		type: 1,
+	})
 	ElMessage.success('删除成功')
 	selectedIds.value = []
 	getList()
@@ -182,13 +169,12 @@
 	sceneType: [], // 场景类型
 	deviceMode: [], // 设备模式
 	areaType: [], // 区域类型
-	sceneStatus: [], // 场景状态
 })
 provide('dictObj', dictObj)
 
 // 获取字典
 function getDictList() {
-	getDictionaryByCode('sceneType,deviceMode,areaType,sceneStatus').then(res => {
+	getDictionaryByCode('CommandSceneType,deviceMode,areaType').then(res => {
 		dictObj.value = res.data.data
 	})
 }

--
Gitblit v1.9.3