index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. <template>
  2. <div class="base-container no-events">
  3. <fnHeader showDate></fnHeader>
  4. <go-back></go-back>
  5. <div class="content">
  6. <!-- <navigation></navigation> -->
  7. <div class="left yes-events">
  8. <!-- <tool-list direction="left" :list="leftToolList" @handleActive="handleActiveLeft"></tool-list> -->
  9. <component :is="components[currentComponent]" />
  10. </div>
  11. <!-- <div class="home-bottom">
  12. <div class="log-box yes-events">
  13. <chart-box class="overflow">
  14. <template #title-name>
  15. <div class="box-name" @click="handleSelectArea">果园日志</div>
  16. </template>
  17. <div class="log-content">
  18. 2月13日,共抽样193棵树,拍摄了193张照片,{{ indicatorChartData.content }}
  19. </div>
  20. <div class="chart-wrap">
  21. <indicator-chart
  22. :key="0 + 'log'"
  23. type="feature"
  24. :chartData="indicatorChartData"
  25. ></indicator-chart>
  26. </div>
  27. </chart-box>
  28. </div>
  29. <div class="file-box yes-events">
  30. <chart-box name="果园档案">
  31. <template #title-right>
  32. <el-icon class="arrow-icon cursor-pointer" color="#141414"><DArrowLeft /></el-icon>
  33. <div class="edit-btn cursor-pointer" @click="toFilePage">编辑</div>
  34. </template>
  35. <img src="@/assets/images/home/line-data.png" alt="" />
  36. </chart-box>
  37. </div>
  38. </div> -->
  39. <div class="right yes-events">
  40. <div class="list">
  41. <div class="sub-title">
  42. <img class="title-icon" src="@/assets/images/common/title-icon.png" />
  43. <span>农情动态</span>
  44. </div>
  45. <div class="right-content">
  46. <album></album>
  47. </div>
  48. </div>
  49. <!-- <tool-list direction="right" :list="rightToolList" @handleActive="handleActiveRight"></tool-list> -->
  50. </div>
  51. <!-- 图例 -->
  52. <img class="legend yes-events" src="@/assets/images/home/legend.png" alt="" />
  53. </div>
  54. </div>
  55. <div ref="mapRef" class="bottom-map"></div>
  56. <!-- 图片弹窗 -->
  57. <PicturePreview :imageUrl="urls" :curIndex="urlsIndex"></PicturePreview>
  58. <album-carousel></album-carousel>
  59. <PdfDialog title="果园报告"></PdfDialog>
  60. </template>
  61. <script setup>
  62. import { onMounted, ref } from "vue";
  63. import config from "@/api/config.js";
  64. import PicturePreview from "@/components/PicturePreview.vue";
  65. import fnHeader from "@/components/fnHeader.vue";
  66. // import navigation from "@/components/navigation.vue";
  67. import chartBox from "@/components/chartBox.vue";
  68. import toolList from "@/components/toolList.vue";
  69. import fileBar from "@/components/fileBar.vue";
  70. import goBack from "@/components/common/goBack.vue";
  71. import HomeMap from "./map/homeMap";
  72. import homePage from "./components/homePage.vue";
  73. import weatherPage from "./components/weatherPage.vue";
  74. import phenologyPage from "./components/phenologyPage.vue";
  75. import indicatorChart from "./components/indicatorChart.vue";
  76. import { useRouter, useRoute } from "vue-router";
  77. import SamplePointLayer from "./map/samplePointLayer";
  78. import { useStore } from "vuex";
  79. import RegionLayer from "./map/regionLayer";
  80. import eventBus from "@/api/eventBus";
  81. import AlbumCarousel from "./album_compoents/albumCarousel.vue";
  82. import album from "./album/index.vue";
  83. import PdfDialog from "../../components/PdfDialog";
  84. let store = useStore();
  85. let route = useRoute();
  86. const farmId = route.query.farmId;
  87. const components = {
  88. homePage,
  89. weatherPage,
  90. phenologyPage,
  91. };
  92. //当前农场
  93. const currentFarm = {
  94. id: farmId,
  95. name: store.getters.userinfo.curFarmName,
  96. };
  97. //当前区域
  98. const currentRegion = {
  99. id: null,
  100. name: null,
  101. };
  102. let homeMap = new HomeMap();
  103. let samplePointLayer = null;
  104. let regionLayer = null;
  105. const router = useRouter();
  106. const mapRef = ref();
  107. onMounted(() => {
  108. VE_API.farm.fetchFarmDetail({ id:currentFarm.id }).then(({ data }) => {
  109. homeMap.initMap("POINT("+data.location["lat"] +" " + data.location["lng"]+")", mapRef.value);
  110. });
  111. // homeMap.initMap(store.getters.userinfo.location, mapRef.value);
  112. // samplePointLayer = new SamplePointLayer(homeMap.kmap.map, currentFarm, currentRegion);
  113. // regionLayer = new RegionLayer(homeMap.kmap.map, currentFarm, currentRegion);
  114. getYellow();
  115. getFarmLog();
  116. });
  117. const indicatorChartData = ref({});
  118. const blueZone = ref("ws0y1meyhxp4");
  119. const getFarmLog = () => {
  120. const params = {
  121. id: null,
  122. farmId: 766,
  123. blueZone: blueZone.value,
  124. };
  125. VE_API.farm.fetchFarmLog(params).then(({ data }) => {
  126. indicatorChartData.value = data || {};
  127. eventBus.emit("chart:updateOption", data);
  128. });
  129. };
  130. const urls = ref([]);
  131. const urlsIndex = ref(0);
  132. const getYellow = () => {
  133. VE_API.home.getYellowList().then((res) => {
  134. // urls.value = res.data.map(item =>{
  135. // return {
  136. // ...item,
  137. // imgPath:config.base_img_url2+item.cloudFilename
  138. // }
  139. // })
  140. // urls.value = [
  141. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-07.jpg",
  142. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-08.jpg",
  143. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-09.jpg",
  144. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-10.jpg",
  145. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-11.jpg",
  146. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-12.jpg",
  147. // "@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-13.jpg",
  148. // ]
  149. });
  150. };
  151. const btnIndex = ref(null);
  152. const btnName = ref("");
  153. const handleBtn = (e) => {
  154. btnName.value = "";
  155. btnIndex.value = e;
  156. eventBus.emit("clear:area");
  157. samplePointLayer.updateAreaStatus(e === 0 ? true : false);
  158. regionLayer.resetData();
  159. samplePointLayer.resetPoint();
  160. };
  161. //点击果园日志
  162. const handleSelectArea = () => {
  163. btnName.value = "";
  164. btnIndex.value = null;
  165. eventBus.emit("clear:area");
  166. regionLayer.resetData();
  167. samplePointLayer.resetPoint();
  168. samplePointLayer.updateAreaStatus(true);
  169. };
  170. //农事点击高亮
  171. const act = ref(null);
  172. const handleAct = (v) => {
  173. act.value = v;
  174. samplePointLayer.resetPoint();
  175. if (v === 1) {
  176. regionLayer.selectAreaMultiple([
  177. { value: 2, color: "blue" },
  178. { value: 4, color: "blue1" },
  179. { value: 5, color: "blue2" },
  180. { value: 7, color: "blue" },
  181. { value: 13, color: "blue2" },
  182. ]);
  183. }
  184. if (v === 2) {
  185. regionLayer.selectAreaMultiple([
  186. { value: 1, color: "blue" },
  187. { value: 2, color: "blue1" },
  188. { value: 9, color: "blue2" },
  189. { value: 12, color: "blue2" },
  190. ]);
  191. }
  192. };
  193. //柱状图点击事件监听
  194. eventBus.on("echart:barClick", (e) => {
  195. btnName.value = "";
  196. btnIndex.value = null;
  197. eventBus.emit("clear:area");
  198. samplePointLayer.updateAreaStatus(false);
  199. const arr = ["花穗伸长", "啃食虫害", "毛毡病"];
  200. const isDraw = arr.includes(e);
  201. const index = arr.indexOf(e);
  202. if (isDraw) {
  203. if (index === 0) {
  204. regionLayer.selectAreaMultiple([
  205. { value: 0, color: "green" },
  206. { value: 1, color: "green" },
  207. { value: 2, color: "green" },
  208. { value: 3, color: "green1" },
  209. { value: 4, color: "green1" },
  210. { value: 5, color: "green2" },
  211. { value: 6, color: "green1" },
  212. { value: 7, color: "green2" },
  213. { value: 8, color: "green2" },
  214. { value: 9, color: "green" },
  215. { value: 10, color: "green" },
  216. { value: 11, color: "green1" },
  217. { value: 12, color: "green2" },
  218. { value: 13, color: "green" },
  219. { value: 14, color: "green2" },
  220. ]);
  221. } else if (index === 1) {
  222. regionLayer.selectAreaMultiple([{ value: 6, color: "red" }]);
  223. } else {
  224. regionLayer.selectAreaMultiple([
  225. { value: 12, color: "red2" },
  226. { value: 10, color: "red" },
  227. { value: 1, color: "red" },
  228. ]);
  229. }
  230. }
  231. });
  232. //黄板点击事件监听
  233. eventBus.on("click:yellowBlock", (e) => {
  234. const arr = ["113.61396985128522", "113.61390710255375", "113.61491218688275"];
  235. if (arr[0] == e) {
  236. urls.value = ["HB-ws0y1menggxv"];
  237. urlsIndex.value = 0;
  238. }
  239. if (arr[1] == e) {
  240. urls.value = ["HB-ws0y1mg0pvd"];
  241. urlsIndex.value = 3;
  242. }
  243. if (arr[2] == e) {
  244. urls.value = ["HB-ws0y1mg9wpcp"];
  245. urlsIndex.value = 6;
  246. }
  247. eventBus.emit("dialog:show", true);
  248. });
  249. const showPoint = ref(true);
  250. const showType = ref("point");
  251. //地图点击事件
  252. eventBus.on("click:point", (e) => {
  253. showType.value = "point";
  254. if (btnIndex.value === 1) {
  255. btnName.value = e.name;
  256. if (e.value === 1) {
  257. showPoint.value = true;
  258. samplePointLayer.updatePointStatus(true);
  259. } else {
  260. showPoint.value = false;
  261. }
  262. }
  263. });
  264. //地图点击区域事件
  265. eventBus.on("click:area", (e) => {
  266. showType.value = "area";
  267. if (btnIndex.value === 0) {
  268. btnName.value = e.name;
  269. if (e.value === 1) {
  270. showPoint.value = true;
  271. } else {
  272. showPoint.value = false;
  273. }
  274. regionLayer.selectArea(e.name * 1 === 0 ? 0 : e.name * 1 - 1, "blue");
  275. }
  276. });
  277. eventBus.on("click:updateArea", (e) => {
  278. blueZone.value = e.value;
  279. btnName.value = e.name;
  280. regionLayer.selectArea(e.name * 1 === 0 ? 0 : e.name * 1 - 1, "blue");
  281. getFarmLog();
  282. });
  283. const currentComponent = ref("homePage");
  284. const handleActiveLeft = (e) => {
  285. currentComponent.value = e.componentName;
  286. if (e.title === "首页") {
  287. router.push("/warningHome");
  288. }
  289. };
  290. const leftToolList = [
  291. {
  292. title: "首页",
  293. name: "home",
  294. componentName: "homePage",
  295. },
  296. {
  297. title: "气象预警",
  298. componentName: "weatherPage",
  299. },
  300. {
  301. title: "物候调节",
  302. componentName: "phenologyPage",
  303. },
  304. {
  305. title: "病虫测报",
  306. },
  307. {
  308. title: "营养评估",
  309. },
  310. ];
  311. const rightIndex = ref(0);
  312. const handleActiveRight = ({ index }) => {
  313. rightIndex.value = index;
  314. btnIndex.value = null;
  315. btnName.value = "";
  316. samplePointLayer.updateAreaStatus(false);
  317. regionLayer.resetData();
  318. samplePointLayer.resetPoint();
  319. if (index !== 0) {
  320. act.value = null;
  321. }
  322. };
  323. const hanleRightIndex = (num) => {
  324. rightIndex.value = num;
  325. eventBus.emit("tool:updateAct", num);
  326. };
  327. const rightToolList = [
  328. {
  329. title: "农事列表",
  330. index: 0,
  331. },
  332. {
  333. title: "处方分析",
  334. index: 2,
  335. },
  336. {
  337. title: "复核对比",
  338. index: 1,
  339. },
  340. ];
  341. // 跳转果园档案
  342. const toFilePage = () => {
  343. router.push("/garden-file");
  344. };
  345. </script>
  346. <style lang="scss" scoped>
  347. .base-container {
  348. width: 100%;
  349. height: 100vh;
  350. color: #fff;
  351. position: absolute;
  352. box-sizing: border-box;
  353. z-index: 1;
  354. .content {
  355. width: 100%;
  356. height: calc(100% - 74px - 48px);
  357. display: flex;
  358. justify-content: space-between;
  359. box-sizing: border-box;
  360. padding-top: 12px;
  361. .left,
  362. .right {
  363. width: 376px;
  364. height: 100%;
  365. box-sizing: border-box;
  366. display: flex;
  367. background: #141D1D;
  368. border-radius: 4px;
  369. border: 1px solid #444444;
  370. }
  371. .left {
  372. margin-left: 8px;
  373. padding: 7px 7px 0 7px;
  374. }
  375. .right {
  376. margin-right: 8px;
  377. .sub-title {
  378. display: flex;
  379. height: 44px;
  380. align-items: center;
  381. padding-left: 12px;
  382. .title-icon {
  383. padding-right: 8px;
  384. }
  385. }
  386. .right-content {
  387. height: calc(100% - 44px);
  388. }
  389. .list {
  390. width: 100%;
  391. height: 100%;
  392. .btn-wrap {
  393. width: 100%;
  394. height: 25px;
  395. line-height: 25px;
  396. margin: 10px 0;
  397. display: flex;
  398. align-items: center;
  399. justify-content: space-between;
  400. div {
  401. width: 48%;
  402. height: 100%;
  403. color: #55e5c6;
  404. border: 1px solid rgba(255, 213, 137, 0.6);
  405. border-radius: 2px;
  406. text-align: center;
  407. font-size: 12px;
  408. cursor: pointer;
  409. &.active {
  410. background: #55e5c6;
  411. color: #000;
  412. }
  413. }
  414. }
  415. .img-box {
  416. width: 100%;
  417. height: calc(100% - 35px);
  418. overflow: auto;
  419. }
  420. .img-box1 {
  421. width: 100%;
  422. height: calc(100% - 10px);
  423. overflow: auto;
  424. margin-top: 10px;
  425. }
  426. .img-box2 {
  427. width: 100%;
  428. height: calc(100% - 45px);
  429. overflow: auto;
  430. margin-top: 10px;
  431. }
  432. // img {
  433. // width: 100%;
  434. // height: auto;
  435. // object-fit: cover;
  436. // margin-bottom: 12px;
  437. // cursor: pointer;
  438. // }
  439. .mt {
  440. margin-top: -12px;
  441. }
  442. }
  443. }
  444. .overflow {
  445. overflow: auto;
  446. }
  447. .home-bottom {
  448. display: flex;
  449. align-items: flex-end;
  450. width: calc(100% - 430px - 430px - 72px);
  451. height: 100%;
  452. align-self: flex-end;
  453. .log-box {
  454. height: 34%;
  455. width: calc(100% - 340px - 28px);
  456. margin-right: 28px;
  457. .box-name {
  458. width: 89px;
  459. height: 22px;
  460. text-align: center;
  461. line-height: 22px;
  462. border-radius: 20px;
  463. margin: 10px 0 5px 6px;
  464. cursor: pointer;
  465. background: linear-gradient(0deg, #bba269 0%, #3d3523 100%);
  466. }
  467. .log-content {
  468. font-size: 12px;
  469. line-height: 1.5;
  470. padding: 0 18px;
  471. }
  472. .chart-wrap {
  473. width: 100%;
  474. height: calc(100% - 50px);
  475. .line {
  476. margin-top: 10px;
  477. margin-bottom: 12px;
  478. }
  479. img {
  480. width: 100%;
  481. margin-bottom: 10px;
  482. }
  483. }
  484. }
  485. .file-box {
  486. height: 25%;
  487. min-height: 210px;
  488. width: 340px;
  489. position: relative;
  490. img {
  491. width: 100%;
  492. margin-top: 12px;
  493. }
  494. .arrow-icon {
  495. top: -32px;
  496. left: 50%;
  497. position: absolute;
  498. background: #fff;
  499. width: 16px;
  500. height: 80px;
  501. line-height: 80px;
  502. border-radius: 5px 0 0 5px;
  503. text-align: center;
  504. transform: translateX(-50%) rotate(270deg);
  505. }
  506. .edit-btn {
  507. padding: 2px 24px;
  508. background: #55e5c6;
  509. border-radius: 4px;
  510. color: #000;
  511. }
  512. }
  513. }
  514. .legend {
  515. position: fixed;
  516. bottom: 8px;
  517. right: 64px;
  518. width: 525px;
  519. height: 16px;
  520. }
  521. }
  522. }
  523. .bottom-map {
  524. width: 100%;
  525. height: 100vh;
  526. position: absolute;
  527. z-index: 0;
  528. }
  529. </style>