Browse Source

fix:修改照片显示问题和果园日志接口对接

wangsisi 1 month ago
parent
commit
897140f930

+ 4 - 1
src/views/home/album_compoents/albumCarouselItem.vue

@@ -2,7 +2,7 @@
   <div class="carousel-container">
     <!-- 图片列表 -->
     <div class="carousel-wrapper"  :style="carouselStyle">
-      <photo-provider v-if="images" :photo-closable="true" @visibleChange="handleVisibleChange">
+      <photo-provider class="provider" v-if="images" :photo-closable="true" @visibleChange="handleVisibleChange">
         <template  v-for="(photo, index) in images"
                    :key="photo.id">
           <album-draw-box  :farmId="farmId" :photo="photo" :current="currentIndex" :index="index" :length="images.length"
@@ -130,6 +130,9 @@ const clearAndRestartTimer = () => {
     display: flex;
     transition: transform 0.5s ease;
     width: 100%;
+    .provider{
+      display: flex;
+    }
   }
   .blur-bg {
     position: absolute;

+ 1 - 1
src/views/home/components/chartSeting.js

@@ -116,7 +116,7 @@ export const galleryIndicatorLine = {
         ]
       },
     grid: {
-        top: 20,
+        top:5,
         left: 8,
         right: 8,
         bottom: 20,

+ 1 - 1
src/views/home/components/indicatorChart.vue

@@ -102,7 +102,7 @@ const processData = () => {
 .card-chart {
     padding: 8px 4px 0 4px;
     width: 100%;
-    height: 210px;
+    height: 180px;
     box-sizing: border-box;
 }
 </style>

+ 2 - 2
src/views/home/index.vue

@@ -18,7 +18,7 @@
               <div class="box-name" @click="handleSelectArea">果园日志</div>
             </template>
             <div class="log-content">
-              2月13日,共抽样193棵树,拍摄了193张照片
+              2月13日,共抽样193棵树,拍摄了193张照片,{{indicatorChartData.content}}
             </div>
             <div class="chart-wrap">
               <indicator-chart :key="0 + 'log'" type="feature" :chartData="indicatorChartData"></indicator-chart>
@@ -87,7 +87,7 @@
     :imageUrl="urls"
     :curIndex="urlsIndex"
   ></PicturePreview>
-  <album-carousel></album-carousel>
+    <album-carousel></album-carousel>
   <PdfDialog title="果园报告" ></PdfDialog>
 </template>