From 6e88705bd5b443a259b24c17c8a299765d059d96 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 23 Jul 2026 16:50:41 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/jagzwxm/ja_web
---
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