index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. <template>
  2. <div class="base-container no-events">
  3. <fnHeader showDate></fnHeader>
  4. <div class="content">
  5. <div class="warning-l left">
  6. <div class="warning-top">
  7. <div class="back-icon yes-events" v-if="!hideChatMapLayer" @click="toggleChatMapLayer">
  8. <img src="@/assets/images/common/back-icon.png" />
  9. 返回
  10. </div>
  11. <div class="top-l yes-events">
  12. <div>
  13. <el-cascader
  14. style="width: 184px"
  15. :show-all-levels="false"
  16. v-model="areaVal"
  17. :props="props1"
  18. :options="areaListOptions"
  19. @change="toggleArea"
  20. popper-class="area-cascader"
  21. />
  22. </div>
  23. <div class="type-box"><img src="@/assets/images/warningHome/lz.png" /></div>
  24. </div>
  25. <div class="top-r yes-events">
  26. <div class="data-box" @click="toggleBox('面积')" :class="{ active: activeBoxName === '面积' }">
  27. <div class="data-value"><span>{{areaVal.includes('3186') ? 31.2 : 419.89}}</span>万亩</div>
  28. <div class="data-name">种植面积</div>
  29. </div>
  30. <div
  31. class="data-box"
  32. v-if="areaVal.includes('3186')"
  33. @click="toggleBox('从化荔枝')"
  34. :class="{ active: activeBoxName === '从化荔枝' }"
  35. >
  36. <div class="data-value"><span>11.9</span>万亩</div>
  37. <div class="data-name">疑似失管面积</div>
  38. </div>
  39. <div class="data-box" @click="toggleBox('产量')" :class="{ active: activeBoxName === '产量' }">
  40. <div class="data-value"><span>{{areaVal.includes('3186') ? 10.4 : 192.12}}</span>万吨</div>
  41. <div class="data-name">预估产量</div>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="warning-alarm yes-events" v-show="hideChatMapLayer">
  46. <alarm-list></alarm-list>
  47. </div>
  48. <div class="time-wrap yes-events">
  49. <time-line></time-line>
  50. </div>
  51. </div>
  52. <div class="warning-r right yes-events">
  53. <!-- <album></album> -->
  54. <chat></chat>
  55. <!-- 地图图例 -->
  56. <div class="map-legend" v-if="legendImg">
  57. <img :src="legendImg" />
  58. </div>
  59. </div>
  60. <div class="warning-search yes-events">
  61. <img src="@/assets/images/warningHome/search-img.png" />
  62. <!-- <div class="focus-farm">
  63. <el-select
  64. v-model="farmVal"
  65. placeholder="我的关注农场"
  66. style="width: 189px"
  67. popper-class="focus-farm-select"
  68. @change="toggleFarm"
  69. >
  70. <el-option label="荔博园" :value="1" />
  71. <el-option label="井冈红糯基地" :value="2" />
  72. </el-select>
  73. </div> -->
  74. </div>
  75. </div>
  76. </div>
  77. <div ref="mapRef" class="bottom-map"></div>
  78. <div id="popup" class="ol-popup-warning">
  79. <div class="warning-info-title">
  80. <div class="icon">
  81. <img src="@/assets/images/common/chart-icon.png" />
  82. </div>
  83. <div id="popup-title"></div>
  84. <div class="close" @click="destroyPopup">
  85. <img src="@/assets/images/warningHome/close-btn.png" />
  86. </div>
  87. </div>
  88. <div id="popup-content" class="info-content"></div>
  89. </div>
  90. <track-dialog></track-dialog>
  91. </template>
  92. <script setup>
  93. import "./map/mockFarmLayer";
  94. import StaticMapLayers from "@/components/static_map_change/Layers.js"
  95. import { onMounted, ref } from "vue";
  96. import fnHeader from "@/components/fnHeader.vue";
  97. import WarningMap from "./warningMap";
  98. import AlarmLayer from "./map/alarmLayer";
  99. import album from "./components/album.vue";
  100. import trackDialog from "./components/trackDialog.vue";
  101. import chat from "./components/chat_components/index.vue";
  102. import alarmList from "./components/alarmList.vue";
  103. import timeLine from "./components/timeLine.vue";
  104. import { useRouter } from "vue-router";
  105. import eventBus from "@/api/eventBus";
  106. import { areaListOptions } from "./area";
  107. import { useStore } from "vuex";
  108. let store = useStore();
  109. let warningMap = new WarningMap();
  110. let alarmLayer = null;
  111. let staticMapLayers = null;
  112. const router = useRouter();
  113. const areaVal = ref(["3"]);
  114. const mapRef = ref();
  115. const legendImg = ref("");
  116. const warningLayers = ref({})
  117. onMounted(() => {
  118. warningMap.initMap(store.getters.userinfo.location, mapRef.value);
  119. alarmLayer = new AlarmLayer(warningMap.kmap);
  120. staticMapLayers = new StaticMapLayers(warningMap.kmap);
  121. // 图例数据
  122. eventBus.on("alarmList:warningLayers", (data) => {
  123. warningLayers.value = data
  124. });
  125. eventBus.on("alarmList:changeMapLayer", ({name, legendUrl}) => {
  126. if(legendUrl){
  127. legendImg.value = legendUrl;
  128. }else{
  129. legendImg.value = warningLayers.value[`${name}图例`];
  130. }
  131. });
  132. // ai与地图交互
  133. eventBus.on("chat:showMapLayer", handleMapLayer)
  134. });
  135. // ai与地图交互
  136. const hideChatMapLayer = ref(true)
  137. const handleMapLayer = (name) => {
  138. hideChatMapLayer.value = false
  139. console.log('name', name);
  140. // staticMapLayers.show("干旱缺水")
  141. }
  142. const toggleChatMapLayer = () => {
  143. hideChatMapLayer.value = true
  144. eventBus.emit("chat:hideMapLayer");
  145. staticMapLayers.hideAll()
  146. }
  147. const destroyPopup = () => {
  148. eventBus.emit("map:destroyPopup");
  149. };
  150. const props1 = {
  151. checkStrictly: true,
  152. };
  153. const toggleArea = (v) => {
  154. activeBoxName.value = null;
  155. const val = v[v.length - 1];
  156. if (val === "3" || val === "3186") {
  157. eventBus.emit("warningHome:toggleArea", val);
  158. }
  159. };
  160. const activeBoxName = ref(null);
  161. const toggleBox = (name) => {
  162. activeBoxName.value = name;
  163. legendImg.value = warningLayers.value[`${name}图例`];
  164. eventBus.emit("warningHome:toggleMapLayer", name);
  165. };
  166. </script>
  167. <style lang="scss" scoped>
  168. .base-container {
  169. width: 100%;
  170. height: 100vh;
  171. color: #fff;
  172. position: absolute;
  173. box-sizing: border-box;
  174. z-index: 1;
  175. ::v-deep {
  176. .focus-farm {
  177. top: 42px;
  178. }
  179. }
  180. .content {
  181. width: 100%;
  182. height: calc(100% - 74px - 48px);
  183. padding: 0 20px 0 27px;
  184. display: flex;
  185. justify-content: space-between;
  186. box-sizing: border-box;
  187. position: relative;
  188. .left,
  189. .right {
  190. width: calc(376px + 54px);
  191. height: 100%;
  192. padding-top: 10px;
  193. box-sizing: border-box;
  194. // display: flex;
  195. }
  196. .right {
  197. // width: 395px;
  198. width: 500px;
  199. position: relative;
  200. .list {
  201. width: 100%;
  202. height: 100%;
  203. }
  204. }
  205. .warning-r {
  206. .map-legend {
  207. position: absolute;
  208. bottom: -33px;
  209. left: -455px;
  210. width: 340px;
  211. img {
  212. width: 340px;
  213. opacity: 0.6;
  214. }
  215. }
  216. }
  217. .warning-search {
  218. position: absolute;
  219. right: 400px;
  220. top: -34px;
  221. display: flex;
  222. align-items: center;
  223. .focus-farm {
  224. padding-left: 15px;
  225. }
  226. ::v-deep {
  227. .el-select__wrapper {
  228. background: rgba(255, 212, 137, 0.2);
  229. box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
  230. height: 50px;
  231. line-height: 50px;
  232. .el-select__caret {
  233. color: #ffd489;
  234. }
  235. }
  236. .el-select__placeholder {
  237. color: #f7be5a;
  238. font-size: 20px;
  239. font-family: "PangMenZhengDao";
  240. text-align: center;
  241. }
  242. }
  243. }
  244. .warning-top {
  245. display: flex;
  246. width: max-content;
  247. align-items: center;
  248. .back-icon {
  249. cursor: pointer;
  250. margin-right: 20px;
  251. height: 50px;
  252. display: flex;
  253. align-items: center;
  254. padding: 0 20px;
  255. border: 1px solid rgba(255, 255, 255, 0.6);
  256. background: rgba(0, 0, 0, 0.2);
  257. border-radius: 4px;
  258. img {
  259. width: 17px;
  260. margin-right: 10px;
  261. }
  262. }
  263. .top-l {
  264. display: flex;
  265. flex-direction: column;
  266. align-items: center;
  267. .type-box {
  268. margin-top: 10px;
  269. background: rgba(29, 29, 29, 0.54);
  270. border: 1px solid rgba(255, 212, 137, 0.3);
  271. border-radius: 2px;
  272. text-align: center;
  273. line-height: 48px;
  274. height: 48px;
  275. width: 184px;
  276. }
  277. ::v-deep {
  278. .el-input__wrapper {
  279. background: rgba(29, 29, 29, 0.54);
  280. box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
  281. height: 50px;
  282. line-height: 50px;
  283. padding: 0 10px;
  284. .el-input__inner {
  285. color: #f7be5a;
  286. font-size: 20px;
  287. font-family: "PangMenZhengDao";
  288. text-align: center;
  289. }
  290. }
  291. .el-select__wrapper {
  292. background: rgba(29, 29, 29, 0.54);
  293. box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
  294. height: 50px;
  295. line-height: 50px;
  296. .el-select__caret {
  297. color: #ffd489;
  298. }
  299. }
  300. .el-select__placeholder {
  301. color: #f7be5a;
  302. font-size: 20px;
  303. font-family: "PangMenZhengDao";
  304. text-align: center;
  305. }
  306. }
  307. }
  308. .top-r {
  309. display: flex;
  310. .data-box {
  311. cursor: pointer;
  312. margin-left: 20px;
  313. width: 200px;
  314. height: 104px;
  315. background: url("@/assets/images/warningHome/box-bg.png") no-repeat center center / 100% 100%;
  316. display: flex;
  317. flex-direction: column;
  318. align-items: center;
  319. &.active {
  320. position: relative;
  321. &::before {
  322. content: "";
  323. position: absolute;
  324. bottom: -26px;
  325. left: 0;
  326. right: 0;
  327. width: 35px;
  328. height: 17px;
  329. margin: 0 auto;
  330. background: url("@/assets/images/warningHome/triangle.png") no-repeat center center / cover;
  331. }
  332. }
  333. .data-value {
  334. padding-top: 15px;
  335. font-size: 20px;
  336. color: rgba(255, 212, 137, 0.4);
  337. font-family: "PangMenZhengDao";
  338. span {
  339. font-size: 38px;
  340. color: #f7be5a;
  341. padding-right: 2px;
  342. }
  343. }
  344. .data-name {
  345. color: #cecece;
  346. font-size: 16px;
  347. }
  348. }
  349. }
  350. }
  351. .warning-alarm {
  352. width: 88px;
  353. padding-top: 14px;
  354. }
  355. .time-wrap {
  356. position: absolute;
  357. bottom: -20px;
  358. left: 140px;
  359. width: 46vw;
  360. min-width: 700px;
  361. height: 71px;
  362. }
  363. }
  364. }
  365. .bottom-map {
  366. width: 100%;
  367. height: 100vh;
  368. position: absolute;
  369. z-index: 0;
  370. }
  371. </style>
  372. <style lang="less">
  373. .ol-scale-line {
  374. left: auto;
  375. right: 430px;
  376. bottom: 38px;
  377. .ol-scale-line-inner {
  378. max-width: 80px;
  379. width: 80px !important;
  380. color: #fff;
  381. border-color: #fff;
  382. }
  383. }
  384. .focus-farm-select {
  385. &.el-popper.is-light {
  386. background: #232323;
  387. border-color: rgba(255, 212, 137, 0.3);
  388. box-shadow: 0px 0px 12px rgba(255, 212, 137, 0.3);
  389. .el-select-dropdown__item {
  390. background: none;
  391. color: rgba(255, 212, 137, 0.6);
  392. }
  393. .el-select-dropdown__item.is-selected {
  394. background: rgba(255, 212, 137, 0.2);
  395. color: #ffd489;
  396. }
  397. }
  398. &.el-popper.is-light .el-popper__arrow:before {
  399. background: #232323;
  400. border-color: rgba(255, 212, 137, 0.3);
  401. }
  402. }
  403. .ol-popup-warning {
  404. position: relative;
  405. width: 295px;
  406. background: rgb(35, 35, 35, 0.86);
  407. color: #fff;
  408. font-size: 16px;
  409. border-radius: 4px;
  410. .warning-info-title {
  411. display: flex;
  412. padding: 6px 10px;
  413. background: rgba(255, 255, 255, 0.05);
  414. font-size: 18px;
  415. border-radius: 4px 4px 0 0;
  416. .icon {
  417. padding-right: 6px;
  418. }
  419. .close {
  420. position: absolute;
  421. right: 12px;
  422. top: 4px;
  423. }
  424. }
  425. .info-content {
  426. padding: 16px 20px 40px 20px;
  427. line-height: 26px;
  428. text-indent: 2em;
  429. }
  430. }
  431. .area-cascader {
  432. &.el-popper.is-light {
  433. background: #232323;
  434. border-color: rgba(255, 212, 137, 0.3);
  435. box-shadow: 0px 0px 12px rgba(255, 212, 137, 0.3);
  436. .el-cascader-menu {
  437. color: rgba(255, 212, 137, 0.6);
  438. border-color: rgba(255, 212, 137, 0.3);
  439. }
  440. .el-cascader-node.in-active-path,
  441. .el-cascader-node.is-active,
  442. .el-cascader-node.is-selectable.in-checked-path {
  443. color: #f7be5a;
  444. background: transparent;
  445. }
  446. .el-radio__input.is-checked .el-radio__inner {
  447. background: #f7be5a;
  448. border-color: #f7be5a;
  449. }
  450. .el-cascader-node:not(.is-disabled):hover,
  451. .el-cascader-node:not(.is-disabled):focus,
  452. .el-cascader-node:not(.is-disabled):hover {
  453. background: rgba(255, 212, 137, 0.2);
  454. }
  455. }
  456. .el-radio__inner {
  457. background-color: rgba(255, 212, 137, 0.3);
  458. border-color: rgba(255, 212, 137, 0.6);
  459. }
  460. &.el-popper.is-light .el-popper__arrow:before {
  461. background: #232323;
  462. border-color: rgba(255, 212, 137, 0.3);
  463. }
  464. }
  465. </style>