From 7430e479cdd84a729cc975aea5a9ccca805eab76 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Thu, 27 Mar 2025 13:36:14 +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 | 80 ++++++++++++++++++++++++++++++++++-----
1 files changed, 69 insertions(+), 11 deletions(-)
diff --git a/src/views/Home/components/HomeRight/HomeRight.vue b/src/views/Home/components/HomeRight/HomeRight.vue
index b7af16c..71cb391 100644
--- a/src/views/Home/components/HomeRight/HomeRight.vue
+++ b/src/views/Home/components/HomeRight/HomeRight.vue
@@ -1,17 +1,75 @@
<template>
- <div class="home-right-index">
- <div class="">
- 哒哒哒
- </div>
- </div>
+ <div class="home-right">
+ <CommonTitle title="协同" />
+ <div class="synergy"></div>
+
+ <CommonTitle title="协同" />
+ <div class="taskAchievements"></div>
+
+ <CommonTitle title="协同" />
+ <div class="eventOverview"></div>
+ </div>
</template>
-<script></script>
+<script>
+import { defineComponent } from 'vue';
+import CommonTitle from '@/components/CommonTitle.vue';
+
+export default defineComponent({
+ components: { CommonTitle },
+});
+</script>
<style scoped lang="scss">
-.home-right-index {
- position: absolute;
- top: 88px;
- right: 58px;
+.home-right {
+ position: absolute;
+ top: hToV(122);
+ right: 31px;
+ width: 404px;
+ height: 43px;
+
+ .titleBox {
+ width: 404px;
+ height: hToV(43);
+ }
+
+ .synergy {
+ width: 390px;
+ height: 108px;
+ background: linear-gradient(
+ 90deg,
+ #1f3e7a 0%,
+ rgba(31, 62, 122, 0.35) 79%,
+ rgba(31, 62, 122, 0) 100%
+ );
+ border-radius: 0px 0px 0px 0px;
+ opacity: 0.85;
+ }
+
+ .taskAchievements {
+ width: 390px;
+ height: hToV(204);
+ background: linear-gradient(
+ 90deg,
+ #1f3e7a 0%,
+ rgba(31, 62, 122, 0.35) 79%,
+ rgba(31, 62, 122, 0) 100%
+ );
+ border-radius: 0px 0px 0px 0px;
+ opacity: 0.85;
+ }
+
+ .eventOverview {
+ width: 390px;
+ height: hToV(445);
+ background: linear-gradient(
+ 90deg,
+ #1f3e7a 0%,
+ rgba(31, 62, 122, 0.35) 79%,
+ rgba(31, 62, 122, 0) 100%
+ );
+ border-radius: 0px 0px 0px 0px;
+ opacity: 0.85;
+ }
}
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.9.3