From bdbc09270be8590d9b5a4837501074dfc338d34b Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Sat, 19 Apr 2025 16:36:44 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/command-center-dashboard

---
 src/components/CurrentTaskDetails/TaskDetailsRight.vue |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/components/CurrentTaskDetails/TaskDetailsRight.vue b/src/components/CurrentTaskDetails/TaskDetailsRight.vue
index 5975a26..34a7ce1 100644
--- a/src/components/CurrentTaskDetails/TaskDetailsRight.vue
+++ b/src/components/CurrentTaskDetails/TaskDetailsRight.vue
@@ -11,7 +11,7 @@
 			</div>
 		</div>
 
-		<BaseControl v-if="taskDetails.workspace_id" />
+		<BaseControl v-if="workspace_id" />
 	</div>
 </template>
 <script setup>
@@ -19,6 +19,7 @@
 import BaseControl from '@/components/CurrentTaskDetails/ControlPanel/BaseControl.vue'
 
 const taskDetails = inject('taskDetails')
+const workspace_id = inject('workspace_id')
 
 const list = ref([
 	{ name: '任务编号', value: '', field: 'job_info_num' },
@@ -58,7 +59,8 @@
 	top: 0;
 	width: 297px;
 	height: 1002px;
-	background: rgba(31, 31, 31, 0.15);
+	background: rgba(31, 31, 31, 0.5);
+	backdrop-filter: blur(0.5rem);
 	border-radius: 0px 40px 40px 0px;
 	display: flex;
 	flex-direction: column;

--
Gitblit v1.9.3