From f7bd94cf4a3d6ce6b06c2f90413f6798c488481d Mon Sep 17 00:00:00 2001
From: batman <978517621@qq.com>
Date: 星期三, 15 三月 2023 10:21:22 +0800
Subject: [PATCH] 修改特殊作业首页

---
 src/views/intellectInspect/inspectIndex/index.vue |   68 ++++++++++++++++++++++-----------
 1 files changed, 45 insertions(+), 23 deletions(-)

diff --git a/src/views/intellectInspect/inspectIndex/index.vue b/src/views/intellectInspect/inspectIndex/index.vue
index 83b347a..be79359 100644
--- a/src/views/intellectInspect/inspectIndex/index.vue
+++ b/src/views/intellectInspect/inspectIndex/index.vue
@@ -164,7 +164,7 @@
           <div style="margin-bottom: 20px">
             <div style="margin-bottom: 10px">处置前:</div>
             <div v-if="beImgs && beImgs.length>0">
-              <el-image v-for="(item,index) in beImgs" :key="index" style="width: 200px; height: 200px;margin-right: 10px" :src="item.split('?')[0]" fit="fill" />
+              <el-image v-for="(item,index) in beImgs" :key="index" style="width: 200px; height: 200px;margin-right: 10px" :src="item" fit="fill" />
             </div>
             <div v-else>
               无照片信息
@@ -173,7 +173,7 @@
           <div>
             <div style="margin-bottom: 10px">处置后</div>
             <div v-if="afImgs && beImgs.length>0">
-              <el-image v-for="(item,index) in afImgs" :key="index" style="width: 200px; height: 200px;margin-right: 10px" :src="item.split('?')[0]" fit="fill" />
+              <el-image v-for="(item,index) in afImgs" :key="index" style="width: 200px; height: 200px;margin-right: 10px" :src="item" fit="fill" />
             </div>
             <div v-else>
               无照片信息
@@ -428,8 +428,7 @@
               padding:[1,1,1,0],
               textStyle: {
                 // 设置默认的文字颜色
-                color: state.themeColor,
-                fontSize: 12
+                color: state.themeColor
               },
             },
             grid: {
@@ -453,7 +452,17 @@
               }
             },
             yAxis: {
-              type: 'value'
+              splitLine: {
+                show: true,
+                lineStyle: {
+                  color: '#fafafa',
+                  width: 1,
+                  type: 'dashed'
+                }
+              },
+              axisLabel:{
+                color: '#ccc'
+              }
             },
             series: [
               {
@@ -519,7 +528,7 @@
               textStyle: {
                 // 设置默认的文字颜色
                 color: state.themeColor,
-                fontSize: 12
+                // fontSize: 12
               },
               itemStyle: {
                 borderWidth: 0 // 设置图例边框宽度为0
@@ -534,21 +543,29 @@
                 itemStyle: {
                   borderRadius: 1,
                   borderColor: '#fff',
-                  borderWidth: 2
+                  borderWidth: 1
                 },
                 label: {
-                  show: false,
-                  position: 'center'
-                },
-                emphasis: {
-                  label: {
-                    show: true,
-                    fontSize: 40,
-                    fontWeight: 'bold'
-                  }
+                  show: true,
+                  position: 'outside',
+                  overflow: 'truncate',
+                  borderWidth: 0,
+                  color: state.themeColor
                 },
                 labelLine: {
-                  show: true
+                  show: true,    // 显示指示线
+                  lineStyle: {
+                    color: '#ccc',
+                    width: 1,
+                    type: 'solid'
+                  }
+                },
+                emphasis: {
+                  itemStyle: {
+                    shadowBlur: 10,
+                    shadowOffsetX: 0,
+                    shadowColor: 'rgba(0, 0, 0, 0.5)'
+                  },
                 },
                 data: [
                   { value: 1048, name: '区域1' },
@@ -938,13 +955,18 @@
 
   .full{
     position:fixed;
-    background: #fff;
-    border-radius: 17px;
+    background: rgba(0,0,0,.2);
+    border: 1px solid rgba(54, 252, 252, .6);
+    border-radius: 17px 1px 1px 17px;
     box-shadow: 3px 3px 12px rgba(0,0,0,.2);
-    height: 34px;
-    line-height: 34px;
-    top: 0;
-    right: 20px;
+    height: 32px;
+    line-height: 30px;
+    top: 10px;
+    right: 2px;
+    display: flex;
+    justify-content: center;
+    backdrop-filter: blur(2px);
+    z-index: 99999;
   }
   .topChart{
     .chart-item{

--
Gitblit v1.9.2