|
@@ -13,12 +13,17 @@
|
|
|
</div>
|
|
|
<div class="home-bottom">
|
|
|
<div class="log-box yes-events">
|
|
|
- <chart-box name="果园日志">
|
|
|
+ <chart-box>
|
|
|
+ <template #title-name>
|
|
|
+ <div class="box-name" @click="handleSelectArea">果园日志</div>
|
|
|
+ </template>
|
|
|
<div class="log-content">
|
|
|
10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。
|
|
|
</div>
|
|
|
<div class="chart-wrap">
|
|
|
<indicator-chart></indicator-chart>
|
|
|
+ <img class="line" src="@/assets/images/home/time1.png" alt="">
|
|
|
+ <img src="@/assets/images/home/text.png" alt="">
|
|
|
</div>
|
|
|
</chart-box>
|
|
|
</div>
|
|
@@ -30,30 +35,62 @@
|
|
|
/></el-icon>
|
|
|
<div class="edit-btn cursor-pointer" @click="toFilePage">编辑</div>
|
|
|
</template>
|
|
|
- <file-bar></file-bar>
|
|
|
+ <!-- <file-bar></file-bar> -->
|
|
|
+ <img src="@/assets/images/home/line-data.png" alt="">
|
|
|
</chart-box>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right yes-events">
|
|
|
<div class="list">
|
|
|
<chart-box name="农事列表" arrow="arrow-left">
|
|
|
- <div class="img-box">
|
|
|
- <img src="@/assets/images/home/ns.png" alt="">
|
|
|
- </div>
|
|
|
+ <template v-if="rightIndex===0">
|
|
|
+ <img class="tabs" src="@/assets/images/home/ns-tabs.png" alt="">
|
|
|
+ <div class="img-box">
|
|
|
+ <img @click="handleAct(item)" v-for="item in 4" :key="item" :src="require(`@/assets/images/home/0${act<=2&&act==item?item+'-act':item}.png`)" alt="">
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="rightIndex===1">
|
|
|
+ <div class="img-box1">
|
|
|
+ <img src="@/assets/images/home/fh01.png" alt="">
|
|
|
+ <img src="@/assets/images/home/fh02.png" alt="">
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="rightIndex===2">
|
|
|
+ <div class="btn-wrap">
|
|
|
+ <div :class="{active:btnIndex===0}" @click="handleBtn(0)">{{btnIndex===0&&btnName!=''?'采样分区:'+ btnName:'选择采样分区'}}</div>
|
|
|
+ <div :class="{active:btnIndex===1}" @click="handleBtn(1)">{{btnIndex===1&&btnName!=''?'单树编号:'+ btnName:'选择树'}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="img-box2" v-show="showPoint">
|
|
|
+ <img src="@/assets/images/home/line-chart.png" alt="">
|
|
|
+ <img src="@/assets/images/home/fh01.png" alt="">
|
|
|
+ </div>
|
|
|
+ <div class="img-box2" v-show="!showPoint">
|
|
|
+ <img src="@/assets/images/home/line-chart1.png" alt="">
|
|
|
+ <img src="@/assets/images/home/fh02.png" alt="">
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</chart-box>
|
|
|
</div>
|
|
|
- <tool-list direction="right" :list="rightToolList"></tool-list>
|
|
|
+ <tool-list direction="right" :list="rightToolList" @handleActive="handleActiveRight"></tool-list>
|
|
|
</div>
|
|
|
|
|
|
<!-- 图例 -->
|
|
|
- <img class="legend" src="@/assets/images/home/legend.png" alt="">
|
|
|
+ <img class="legend yes-events" src="@/assets/images/home/legend.png" alt="">
|
|
|
</div>
|
|
|
</div>
|
|
|
<div ref="mapRef" class="bottom-map"></div>
|
|
|
+
|
|
|
+ <!-- 图片弹窗 -->
|
|
|
+ <!-- <PicturePreview
|
|
|
+ :show="dialogVisible"
|
|
|
+ :imageUrl="urls"
|
|
|
+ :curIndex="urlsIndex"
|
|
|
+ ></PicturePreview> -->
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
import { onMounted, ref } from "vue";
|
|
|
+import PicturePreview from "@/components/PicturePreview.vue";
|
|
|
import fnHeader from "@/components/fnHeader.vue";
|
|
|
import navigation from "@/components/navigation.vue";
|
|
|
import chartBox from "@/components/chartBox.vue";
|
|
@@ -68,7 +105,8 @@ import { useRouter } from "vue-router";
|
|
|
import SamplePointLayer from "./map/samplePointLayer";
|
|
|
import {useStore} from "vuex";
|
|
|
import RegionLayer from "./map/regionLayer";
|
|
|
-
|
|
|
+import eventBus from "@/api/eventBus";
|
|
|
+// import "./map/mockFarmLayer"
|
|
|
let store = useStore()
|
|
|
const components = {
|
|
|
homePage,
|
|
@@ -96,6 +134,62 @@ onMounted(() => {
|
|
|
regionLayer = new RegionLayer(homeMap.kmap.map, currentFarm, currentRegion)
|
|
|
});
|
|
|
|
|
|
+const dialogVisible = ref(true)
|
|
|
+
|
|
|
+const btnIndex = ref(null)
|
|
|
+const btnName = ref("")
|
|
|
+const handleBtn = (e) =>{
|
|
|
+ btnIndex.value = e
|
|
|
+}
|
|
|
+
|
|
|
+//点击果园日志
|
|
|
+const handleSelectArea = () =>{
|
|
|
+ eventBus.emit("clear:area")
|
|
|
+ console.log('currentFarm',currentFarm);
|
|
|
+ regionLayer.reset(currentFarm)
|
|
|
+}
|
|
|
+
|
|
|
+//农事点击高亮
|
|
|
+const act = ref(null)
|
|
|
+const handleAct = (v) =>{
|
|
|
+ act.value = v
|
|
|
+ regionLayer.selectArea(v,["#2199f87a","#2199f87a"])
|
|
|
+}
|
|
|
+
|
|
|
+//柱状图点击事件监听
|
|
|
+eventBus.on('echart:barClick',(e)=>{
|
|
|
+ const arr = ["病虫害03", "病害1", "虫害1","病虫害02"]
|
|
|
+ const isDraw = arr.includes(e)
|
|
|
+ if(isDraw){
|
|
|
+ regionLayer.selectAreaMultiple([5,8,10],["#b815007a","#b815007a"])
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const showPoint = ref(true)
|
|
|
+//地图点击事件
|
|
|
+eventBus.on('click:point',(e)=>{
|
|
|
+ if(btnIndex.value===1){
|
|
|
+ btnName.value=e.name
|
|
|
+ if(e.value===1){
|
|
|
+ showPoint.value = true
|
|
|
+ }else{
|
|
|
+ showPoint.value = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // regionLayer.reset(currentFarm,currentFarm)
|
|
|
+})
|
|
|
+
|
|
|
+eventBus.on('click:area',(e)=>{
|
|
|
+ if(btnIndex.value===0){
|
|
|
+ btnName.value=e.name
|
|
|
+ if(e.value===1){
|
|
|
+ showPoint.value = true
|
|
|
+ }else{
|
|
|
+ showPoint.value = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
const currentComponent = ref("homePage");
|
|
|
const handleActiveLeft = (e) => {
|
|
|
currentComponent.value = e.componentName;
|
|
@@ -122,15 +216,31 @@ const leftToolList = [
|
|
|
},
|
|
|
];
|
|
|
|
|
|
+const rightIndex = ref(0)
|
|
|
+const handleActiveRight = ({index}) => {
|
|
|
+ rightIndex.value = index
|
|
|
+ btnIndex.value = null
|
|
|
+ btnName.value = ""
|
|
|
+ if(index!==0){
|
|
|
+ act.value = null
|
|
|
+ }
|
|
|
+};
|
|
|
+const hanleRightIndex = (num) =>{
|
|
|
+ rightIndex.value = num
|
|
|
+ eventBus.emit('tool:updateAct',num)
|
|
|
+}
|
|
|
const rightToolList = [
|
|
|
{
|
|
|
title: "农事列表",
|
|
|
+ index:0,
|
|
|
},
|
|
|
{
|
|
|
- title: "复核对比",
|
|
|
+ title: "处方分析",
|
|
|
+ index:2,
|
|
|
},
|
|
|
{
|
|
|
- title: "处方分析",
|
|
|
+ title: "复核对比",
|
|
|
+ index:1,
|
|
|
},
|
|
|
];
|
|
|
|
|
@@ -167,15 +277,55 @@ const toFilePage = () => {
|
|
|
.list {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
+ .btn-wrap{
|
|
|
+ width: 100%;
|
|
|
+ height: 25px;
|
|
|
+ line-height: 25px;
|
|
|
+ margin: 10px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ div{
|
|
|
+ width: 48%;
|
|
|
+ height: 100%;
|
|
|
+ color: #FFD489;
|
|
|
+ border: 1px solid rgba(255,213,137,0.6);
|
|
|
+ border-radius: 2px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 12px;
|
|
|
+ cursor: pointer;
|
|
|
+ &.active{
|
|
|
+ background: #FFD489;
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.img-box{
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
- overflow: hidden;
|
|
|
+ height: calc(100% - 35px);
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
+ .img-box1{
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 10px);
|
|
|
+ overflow: auto;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ .img-box2{
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 45px);
|
|
|
+ overflow: auto;
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
img{
|
|
|
width: 100%;
|
|
|
height: auto;
|
|
|
object-fit: cover;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .mt{
|
|
|
+ margin-top: -12px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -189,11 +339,34 @@ const toFilePage = () => {
|
|
|
height: 34%;
|
|
|
width: calc(100% - 340px - 28px);
|
|
|
margin-right: 28px;
|
|
|
+ .box-name{
|
|
|
+ width: 89px;
|
|
|
+ height: 22px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 22px;
|
|
|
+ border-radius: 20px;
|
|
|
+ margin: 10px 0 5px 6px;
|
|
|
+ cursor: pointer;
|
|
|
+ background: linear-gradient(0deg,#BBA269 0%, #3D3523 100%);
|
|
|
+ }
|
|
|
.log-content {
|
|
|
font-size: 12px;
|
|
|
line-height: 1.5;
|
|
|
padding: 0 18px;
|
|
|
}
|
|
|
+ .chart-wrap{
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 50px);
|
|
|
+ overflow: auto;
|
|
|
+ .line{
|
|
|
+ margin-top: 10px;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ }
|
|
|
+ img{
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.file-box {
|
|
@@ -201,6 +374,10 @@ const toFilePage = () => {
|
|
|
min-height: 210px;
|
|
|
width: 340px;
|
|
|
position: relative;
|
|
|
+ img{
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 12px;
|
|
|
+ }
|
|
|
.arrow-icon {
|
|
|
top: -32px;
|
|
|
left: 50%;
|