From 9b178c3f200efa15fbfee7aa67d09177bca84d47 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Fri, 28 Mar 2025 17:09:43 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/command-center-dashboard
---
src/views/Home/components/HomeRight/HomeRight.vue | 33 +++++++++++++++++++++++----------
1 files changed, 23 insertions(+), 10 deletions(-)
diff --git a/src/views/Home/components/HomeRight/HomeRight.vue b/src/views/Home/components/HomeRight/HomeRight.vue
index a978c11..180e997 100644
--- a/src/views/Home/components/HomeRight/HomeRight.vue
+++ b/src/views/Home/components/HomeRight/HomeRight.vue
@@ -1,16 +1,29 @@
<template>
- <div class="home-right-index">
- <div class="">
- 哒哒哒
- </div>
- </div>
+ <div class="home-right">
+ <UserOperate/>
+ <Synergy />
+ <TaskAchievements />
+ <EventOverview />
+ </div>
</template>
-<script></script>
+<script setup>
+import Synergy from '@/views/Home/components/HomeRight/Synergy.vue';
+import TaskAchievements from '@/views/Home/components/HomeRight/TaskAchievements.vue';
+import EventOverview from '@/views/Home/components/HomeRight/EventOverview.vue';
+import UserOperate from '@/views/Home/components/HomeRight/UserOperate.vue';
+</script>
<style scoped lang="scss">
-.home-right-index {
- margin-top: 12px;
- margin-right: 58px;
+.home-right {
+ position: absolute;
+ top: 122px;
+ right: 31px;
+ width: 404px;
+
+ .titleBox {
+ width: 404px;
+ height: 43px;
+ }
}
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.9.3