From b22a392fcb3427c809240b74566aa22342b70af5 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 10 Feb 2026 11:09:28 +0800
Subject: [PATCH] feat:数据驾驶舱页面调整

---
 applications/drone-command/src/views/dataCockpit/components/templateComponents/TitleTemplate.vue |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/applications/drone-command/src/views/dataCockpit/components/templateComponents/TitleTemplate.vue b/applications/drone-command/src/views/dataCockpit/components/templateComponents/TitleTemplate.vue
index 9d3c9b0..39c8c8f 100644
--- a/applications/drone-command/src/views/dataCockpit/components/templateComponents/TitleTemplate.vue
+++ b/applications/drone-command/src/views/dataCockpit/components/templateComponents/TitleTemplate.vue
@@ -9,7 +9,7 @@
  * 2026-01-08 09:32:52
 -->
 <template>
-	<div class="title-box">
+	<div class="title-box" :class="props.className">
 		<div class="title">
 			<slot></slot>
 		</div>
@@ -17,7 +17,12 @@
 </template>
 
 <script setup>
-
+const props = defineProps({
+  className: {
+    type: String,
+    default: ''
+  }
+})
 </script>
 
 <style lang="scss" scoped>
@@ -40,4 +45,8 @@
 		text-transform: none;
 	}
 }
+
+.equipment-scene {
+	background: url('@/assets/images/dataCockpit/equipment-scene.png') center / 100% 100% no-repeat !important;
+}
 </style>
\ No newline at end of file

--
Gitblit v1.9.3