index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. <template>
  2. <div class="base-container no-events">
  3. <fnHeader showDate></fnHeader>
  4. <div class="content">
  5. <navigation></navigation>
  6. <div class="left yes-events">
  7. <tool-list
  8. direction="left"
  9. :list="leftToolList"
  10. @handleActive="handleActiveLeft"
  11. ></tool-list>
  12. <component :is="components[currentComponent]" />
  13. </div>
  14. <div class="home-bottom">
  15. <div class="log-box yes-events">
  16. <chart-box>
  17. <template #title-name>
  18. <div class="box-name" @click="handleSelectArea">果园日志</div>
  19. </template>
  20. <div class="log-content">
  21. 10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。
  22. </div>
  23. <div class="chart-wrap">
  24. <indicator-chart></indicator-chart>
  25. <img class="line" src="@/assets/images/home/time1.png" alt="">
  26. <img src="@/assets/images/home/text.png" alt="">
  27. </div>
  28. </chart-box>
  29. </div>
  30. <div class="file-box yes-events">
  31. <chart-box name="果园档案">
  32. <template #title-right>
  33. <el-icon class="arrow-icon cursor-pointer" color="#141414"
  34. ><DArrowLeft
  35. /></el-icon>
  36. <div class="edit-btn cursor-pointer" @click="toFilePage">编辑</div>
  37. </template>
  38. <!-- <file-bar></file-bar> -->
  39. <img src="@/assets/images/home/line-data.png" alt="">
  40. </chart-box>
  41. </div>
  42. </div>
  43. <div class="right yes-events">
  44. <div class="list">
  45. <chart-box name="农事列表" arrow="arrow-left">
  46. <template v-if="rightIndex===0">
  47. <img class="tabs" src="@/assets/images/home/ns-tabs.png" alt="">
  48. <div class="img-box">
  49. <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="">
  50. </div>
  51. </template>
  52. <template v-if="rightIndex===1">
  53. <div class="img-box1">
  54. <img src="@/assets/images/home/fh01.png" alt="">
  55. <img src="@/assets/images/home/fh02.png" alt="">
  56. </div>
  57. </template>
  58. <template v-if="rightIndex===2">
  59. <div class="btn-wrap">
  60. <div :class="{active:btnIndex===0}" @click="handleBtn(0)">{{btnIndex===0&&btnName!=''?'采样分区:'+ btnName:'选择采样分区'}}</div>
  61. <div :class="{active:btnIndex===1}" @click="handleBtn(1)">{{btnIndex===1&&btnName!=''?'单树编号:'+ btnName:'选择树'}}</div>
  62. </div>
  63. <div class="img-box2" v-show="showPoint">
  64. <img src="@/assets/images/home/line-chart.png" alt="">
  65. <img src="@/assets/images/home/fh01.png" alt="">
  66. </div>
  67. <div class="img-box2" v-show="!showPoint">
  68. <img src="@/assets/images/home/line-chart1.png" alt="">
  69. <img src="@/assets/images/home/fh02.png" alt="">
  70. </div>
  71. </template>
  72. </chart-box>
  73. </div>
  74. <tool-list direction="right" :list="rightToolList" @handleActive="handleActiveRight"></tool-list>
  75. </div>
  76. <!-- 图例 -->
  77. <img class="legend yes-events" src="@/assets/images/home/legend.png" alt="">
  78. </div>
  79. </div>
  80. <div ref="mapRef" class="bottom-map"></div>
  81. <!-- 图片弹窗 -->
  82. <!-- <PicturePreview
  83. :show="dialogVisible"
  84. :imageUrl="urls"
  85. :curIndex="urlsIndex"
  86. ></PicturePreview> -->
  87. </template>
  88. <script setup>
  89. import { onMounted, ref } from "vue";
  90. import PicturePreview from "@/components/PicturePreview.vue";
  91. import fnHeader from "@/components/fnHeader.vue";
  92. import navigation from "@/components/navigation.vue";
  93. import chartBox from "@/components/chartBox.vue";
  94. import toolList from "@/components/toolList.vue";
  95. import fileBar from "@/components/fileBar.vue";
  96. import HomeMap from "./map/homeMap";
  97. import homePage from "./components/homePage.vue";
  98. import weatherPage from "./components/weatherPage.vue";
  99. import phenologyPage from "./components/phenologyPage.vue";
  100. import indicatorChart from "./components/indicatorChart.vue";
  101. import { useRouter } from "vue-router";
  102. import SamplePointLayer from "./map/samplePointLayer";
  103. import {useStore} from "vuex";
  104. import RegionLayer from "./map/regionLayer";
  105. import eventBus from "@/api/eventBus";
  106. // import "./map/mockFarmLayer"
  107. let store = useStore()
  108. const components = {
  109. homePage,
  110. weatherPage,
  111. phenologyPage,
  112. };
  113. //当前农场
  114. const currentFarm = {
  115. id: store.getters.userinfo.curFarmId,
  116. name: store.getters.userinfo.curFarmName,
  117. }
  118. //当前区域
  119. const currentRegion = {
  120. id: null,
  121. name: null
  122. }
  123. let homeMap = new HomeMap();
  124. let samplePointLayer = null
  125. let regionLayer = null
  126. const router = useRouter();
  127. const mapRef = ref();
  128. onMounted(() => {
  129. homeMap.initMap(store.getters.userinfo.location, mapRef.value);
  130. samplePointLayer = new SamplePointLayer(homeMap.kmap.map, currentFarm, currentRegion)
  131. regionLayer = new RegionLayer(homeMap.kmap.map, currentFarm, currentRegion)
  132. });
  133. const dialogVisible = ref(true)
  134. const btnIndex = ref(null)
  135. const btnName = ref("")
  136. const handleBtn = (e) =>{
  137. btnIndex.value = e
  138. }
  139. //点击果园日志
  140. const handleSelectArea = () =>{
  141. eventBus.emit("clear:area")
  142. console.log('currentFarm',currentFarm);
  143. regionLayer.reset(currentFarm)
  144. }
  145. //农事点击高亮
  146. const act = ref(null)
  147. const handleAct = (v) =>{
  148. act.value = v
  149. regionLayer.selectArea(v,["#2199f87a","#2199f87a"])
  150. }
  151. //柱状图点击事件监听
  152. eventBus.on('echart:barClick',(e)=>{
  153. const arr = ["病虫害03", "病害1", "虫害1","病虫害02"]
  154. const isDraw = arr.includes(e)
  155. if(isDraw){
  156. regionLayer.selectAreaMultiple([5,8,10],["#b815007a","#b815007a"])
  157. }
  158. })
  159. const showPoint = ref(true)
  160. //地图点击事件
  161. eventBus.on('click:point',(e)=>{
  162. if(btnIndex.value===1){
  163. btnName.value=e.name
  164. if(e.value===1){
  165. showPoint.value = true
  166. }else{
  167. showPoint.value = false
  168. }
  169. }
  170. // regionLayer.reset(currentFarm,currentFarm)
  171. })
  172. eventBus.on('click:area',(e)=>{
  173. if(btnIndex.value===0){
  174. btnName.value=e.name
  175. if(e.value===1){
  176. showPoint.value = true
  177. }else{
  178. showPoint.value = false
  179. }
  180. }
  181. })
  182. const currentComponent = ref("homePage");
  183. const handleActiveLeft = (e) => {
  184. currentComponent.value = e.componentName;
  185. };
  186. const leftToolList = [
  187. {
  188. title: "首页",
  189. name: "home",
  190. componentName: "homePage",
  191. },
  192. {
  193. title: "气象预警",
  194. componentName: "weatherPage",
  195. },
  196. {
  197. title: "物候调节",
  198. componentName: "phenologyPage",
  199. },
  200. {
  201. title: "病虫测报",
  202. },
  203. {
  204. title: "营养评估",
  205. },
  206. ];
  207. const rightIndex = ref(0)
  208. const handleActiveRight = ({index}) => {
  209. rightIndex.value = index
  210. btnIndex.value = null
  211. btnName.value = ""
  212. if(index!==0){
  213. act.value = null
  214. }
  215. };
  216. const hanleRightIndex = (num) =>{
  217. rightIndex.value = num
  218. eventBus.emit('tool:updateAct',num)
  219. }
  220. const rightToolList = [
  221. {
  222. title: "农事列表",
  223. index:0,
  224. },
  225. {
  226. title: "处方分析",
  227. index:2,
  228. },
  229. {
  230. title: "复核对比",
  231. index:1,
  232. },
  233. ];
  234. // 跳转果园档案
  235. const toFilePage = () => {
  236. router.push('/garden-file')
  237. }
  238. </script>
  239. <style lang="scss" scoped>
  240. .base-container {
  241. width: 100%;
  242. height: 100vh;
  243. color: #fff;
  244. position: absolute;
  245. box-sizing: border-box;
  246. z-index: 1;
  247. .content {
  248. width: 100%;
  249. height: calc(100% - 74px - 48px);
  250. display: flex;
  251. justify-content: space-between;
  252. box-sizing: border-box;
  253. .left,
  254. .right {
  255. width: calc(376px + 54px);
  256. height: 100%;
  257. padding-top: 10px;
  258. box-sizing: border-box;
  259. display: flex;
  260. }
  261. .right {
  262. .list {
  263. width: 100%;
  264. height: 100%;
  265. .btn-wrap{
  266. width: 100%;
  267. height: 25px;
  268. line-height: 25px;
  269. margin: 10px 0;
  270. display: flex;
  271. align-items: center;
  272. justify-content: space-between;
  273. div{
  274. width: 48%;
  275. height: 100%;
  276. color: #FFD489;
  277. border: 1px solid rgba(255,213,137,0.6);
  278. border-radius: 2px;
  279. text-align: center;
  280. font-size: 12px;
  281. cursor: pointer;
  282. &.active{
  283. background: #FFD489;
  284. color: #000;
  285. }
  286. }
  287. }
  288. .img-box{
  289. width: 100%;
  290. height: calc(100% - 35px);
  291. overflow: auto;
  292. }
  293. .img-box1{
  294. width: 100%;
  295. height: calc(100% - 10px);
  296. overflow: auto;
  297. margin-top: 10px;
  298. }
  299. .img-box2{
  300. width: 100%;
  301. height: calc(100% - 45px);
  302. overflow: auto;
  303. margin-top: 10px;
  304. }
  305. img{
  306. width: 100%;
  307. height: auto;
  308. object-fit: cover;
  309. margin-bottom: 12px;
  310. cursor: pointer;
  311. }
  312. .mt{
  313. margin-top: -12px;
  314. }
  315. }
  316. }
  317. .home-bottom {
  318. display: flex;
  319. align-items: flex-end;
  320. width: calc(100% - 430px - 430px - 72px);
  321. height: 100%;
  322. align-self: flex-end;
  323. .log-box {
  324. height: 34%;
  325. width: calc(100% - 340px - 28px);
  326. margin-right: 28px;
  327. .box-name{
  328. width: 89px;
  329. height: 22px;
  330. text-align: center;
  331. line-height: 22px;
  332. border-radius: 20px;
  333. margin: 10px 0 5px 6px;
  334. cursor: pointer;
  335. background: linear-gradient(0deg,#BBA269 0%, #3D3523 100%);
  336. }
  337. .log-content {
  338. font-size: 12px;
  339. line-height: 1.5;
  340. padding: 0 18px;
  341. }
  342. .chart-wrap{
  343. width: 100%;
  344. height: calc(100% - 50px);
  345. overflow: auto;
  346. .line{
  347. margin-top: 10px;
  348. margin-bottom: 12px;
  349. }
  350. img{
  351. width: 100%;
  352. margin-bottom: 10px;
  353. }
  354. }
  355. }
  356. .file-box {
  357. height: 25%;
  358. min-height: 210px;
  359. width: 340px;
  360. position: relative;
  361. img{
  362. width: 100%;
  363. margin-top: 12px;
  364. }
  365. .arrow-icon {
  366. top: -32px;
  367. left: 50%;
  368. position: absolute;
  369. background: #fff;
  370. width: 16px;
  371. height: 80px;
  372. line-height: 80px;
  373. border-radius: 5px 0 0 5px;
  374. text-align: center;
  375. transform: translateX(-50%) rotate(270deg);
  376. }
  377. .edit-btn {
  378. padding: 2px 24px;
  379. background: #FFD489;
  380. border-radius: 4px;
  381. color: #000;
  382. }
  383. }
  384. }
  385. .legend{
  386. position: fixed;
  387. bottom: 8px;
  388. right: 64px;
  389. width: 525px;
  390. height: 16px;
  391. }
  392. }
  393. }
  394. .bottom-map {
  395. width: 100%;
  396. height: 100vh;
  397. position: absolute;
  398. z-index: 0;
  399. }
  400. </style>