From c7487a244265d183b1dcfca93aac327b87a475a8 Mon Sep 17 00:00:00 2001 From: gongjiale <942894820@qq.com> Date: Mon, 28 Nov 2022 17:28:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ReservoirBottom.vue | 23 +++- .../assertReport/components/ReservoirLeft.vue | 53 +++++++- .../components/ReservoirRight.vue | 125 +++++++++++++++--- .../components/ReservoirThumbnail.vue | 4 +- front/src/views/assertReport/index.vue | 73 +++++----- 5 files changed, 214 insertions(+), 64 deletions(-) diff --git a/front/src/views/assertReport/components/ReservoirBottom.vue b/front/src/views/assertReport/components/ReservoirBottom.vue index b3d17846..7e819dca 100644 --- a/front/src/views/assertReport/components/ReservoirBottom.vue +++ b/front/src/views/assertReport/components/ReservoirBottom.vue @@ -48,6 +48,23 @@ } \ No newline at end of file diff --git a/front/src/views/assertReport/components/ReservoirLeft.vue b/front/src/views/assertReport/components/ReservoirLeft.vue index 0737c7e3..9293804a 100644 --- a/front/src/views/assertReport/components/ReservoirLeft.vue +++ b/front/src/views/assertReport/components/ReservoirLeft.vue @@ -171,6 +171,24 @@ export default { color: #f4fcfe; border-color: #107bb0; box-shadow: 1px 1px 5px 1px RGB(16, 123, 176, 0.8) inset } + + @keyframes turn { + 0% { + border-image: linear-gradient(to right, #003194, #00ffea) 1; + } + 25% { + border-image: linear-gradient(to bottom, #003194, #00ffea) 1; + } + 50% { + border-image: linear-gradient(to left, #003194, #00ffea) 1; + } + 75% { + border-image: linear-gradient(to top, #003194, #00ffea) 1; + } + 100% { + border-image: linear-gradient(to right, #003194, #00ffea) 1; + } + } .reservoir-survey { @@ -181,7 +199,7 @@ export default { display: flex; flex-direction: column; - + .platform-overview-top { width: 100%; height: 3.8rem; @@ -195,7 +213,7 @@ export default { transition: all 100ms ease-out; .top { font-size: 24px; - background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat; + background: url('~@/assets/capabilityCloud/infrastructure_title.png') no-repeat; background-size: 100% 100%; text-align: center; } @@ -261,6 +279,13 @@ export default { } } } + .item:hover { + background: linear-gradient( + to bottom, + rgba(33, 54, 88, 0.7), + rgba(33, 54, 88, 0.9) + ); + } .item:nth-of-type(1) { margin-top: 10px; .img { @@ -283,6 +308,10 @@ export default { } } } + .platform-overview-top:hover { + border: 2px solid; + animation: turn 5s linear infinite; + } .platform-overview-mid { margin-top:20px; width: 100%; @@ -297,7 +326,7 @@ export default { transition: all 100ms ease-out; .top { font-size: 24px; - background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat; + background: url('~@/assets/capabilityCloud/infrastructure_title.png') no-repeat; background-size: 100% 100%; text-align: center; margin-bottom: 8px; @@ -334,22 +363,26 @@ export default { text-align: center; } & > span:nth-child(2) { - width: 1.47rem; + width: 1.57rem; padding-left: 0.05rem; + //text-align: center; } & > span:nth-child(3) { width: 1.47rem; padding-left: 0.05rem; + // text-align: center; } & > span:nth-child(4) { width: 0.5rem; padding-left: 0.05rem; + text-align: center; } & > span:last-child { - width: 0.8rem; + width: 0.7rem; color: #1ffefd; text-align: center; border-right: 0; + text-align: center; } } & > div:first-child { @@ -360,6 +393,10 @@ export default { } } + .platform-overview-mid:hover { + border: 2px solid; + animation: turn 5s linear infinite; + } .platform-overview-bottom { margin-top:20px; width: 100%; @@ -374,7 +411,7 @@ export default { transition: all 100ms ease-out; .top { font-size: 24px; - background: url(~@/assets/capabilityCloud/top_bg.png) no-repeat; + background: url('~@/assets/capabilityCloud/infrastructure_title.png') no-repeat; background-size: 100% 100%; text-align: center; } @@ -407,6 +444,10 @@ export default { } } + .platform-overview-bottom:hover { + border: 2px solid; + animation: turn 5s linear infinite; + } } diff --git a/front/src/views/assertReport/components/ReservoirRight.vue b/front/src/views/assertReport/components/ReservoirRight.vue index f576ef04..50fdde13 100644 --- a/front/src/views/assertReport/components/ReservoirRight.vue +++ b/front/src/views/assertReport/components/ReservoirRight.vue @@ -12,8 +12,8 @@
排行
部门名称
-
提供资源
-
贡献总量
+
应用数
+
贡献金额
@@ -31,6 +31,60 @@
+ + +
+

市级部门审评节省资金排行

@@ -38,8 +92,8 @@
排行
部门名称
-
提供资源
-
贡献总量
+
应用数
+
贡献金额
@@ -66,8 +120,8 @@
序号
部门名称
-
提供资源
-
贡献总量
+
应用数
+
贡献金额
序号
部门名称
-
提供资源
-
贡献总量
+
应用数
+
贡献金额
diff --git a/front/src/views/assertReport/components/ReservoirThumbnail.vue b/front/src/views/assertReport/components/ReservoirThumbnail.vue index 3132f7e1..3d124fbd 100644 --- a/front/src/views/assertReport/components/ReservoirThumbnail.vue +++ b/front/src/views/assertReport/components/ReservoirThumbnail.vue @@ -362,8 +362,8 @@ export default { background-size: 100% 100%; .city-map-content-echarts { width: 10rem; - height: 8rem; - top: 0px; + height: 7.9rem; + top: 10px; left: 500px; bottom: 2rem; position: absolute; diff --git a/front/src/views/assertReport/index.vue b/front/src/views/assertReport/index.vue index 1134f19c..0997458e 100644 --- a/front/src/views/assertReport/index.vue +++ b/front/src/views/assertReport/index.vue @@ -8,7 +8,7 @@ 城市云脑通用能力服务平台
-
累计节省财政资金
+
累计节省财政资金