Home copy.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-01-18 15:46:34
  4. * @LastEditTime: 2021-11-30 18:54:36
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \vue3-element-admin\src\views\Home.vue
  8. -->
  9. <template>
  10. <Bg :active="menuType == 'znxy'" ></Bg>
  11. <Head @selectOrganAndArea="selectOrganAndArea" @changeGarden="changeGarden" @goBack="goBack" :key="hideZnxy" :hideZnxy="hideZnxy" :menuType="menuType"></Head>
  12. <Navigation v-if="hideZnxy && menuType == 'znxy'" @handleAct="handleAct" @select="navSelect" :val="menuType"></Navigation>
  13. <Map ref="mapRef" v-if="menuType == 'znxy'" :tabValue="tabValue" @setHideZnxy="setHideZnxy"></Map>
  14. <ZnxyPage v-if="hideZnxy && menuType == 'znxy'" ref="znxyRef" :tabValue="tabValue" @workerPath="workerPath" @setTreeStyle="setTreeStyle"
  15. @nsAllot="nsAllot" @selectDay="selectDay"
  16. ></ZnxyPage>
  17. <NsAllot v-if="menuType == 'ns_allot'"></NsAllot>
  18. </template>
  19. <script setup>
  20. import {useStore} from "vuex"
  21. import Map from "./Map";
  22. import {onMounted, ref, onBeforeUnmount, watchEffect, provide, inject , watch, computed} from "vue";
  23. import Head from "./Head";
  24. import Bg from "./Bg";
  25. import {fitExtent} from "../common/ol_common";
  26. import ZnxyPage from "./znxy/index"
  27. import NsAllot from "./ns_allot/index"
  28. import Navigation from "./Navigation";
  29. import {WKT} from "ol/format";
  30. let store = useStore()
  31. let state = useStore().state;
  32. const menuType = ref("znxy")
  33. const title = ref('智能巡园')
  34. const mapRef = ref(null)
  35. const znxyRef = ref(null)
  36. const recordId = ref(null)
  37. const recordRowData = ref(null)
  38. let curGardenId = ref(store.getters.userinfo.curGardenId)
  39. let hideZnxy = ref(true)
  40. /**
  41. * 给地图中的树设置样式
  42. * @param style
  43. */
  44. function setTreeStyle(style){
  45. let view = mapRef.value.znxyMap.kmap.view
  46. mapRef.value.znxyMap.setTreeStyle((f)=>{
  47. let zoom = view.getZoom();
  48. return style(f,zoom)
  49. })
  50. }
  51. function navSelect(val,t){
  52. title.value = t
  53. menuType.value = val
  54. }
  55. function goBack(){
  56. menuType.value = "znxy"
  57. }
  58. function showTreeDialog(f){
  59. znxyRef.value.showTreeDialog(f)
  60. }
  61. function selectOrganAndArea({organ,area}){
  62. if(organ){
  63. let geom = new WKT().readGeometry(organ.point)
  64. mapRef.value.znxyMap.fit(geom.getExtent())
  65. }
  66. if(area){
  67. let geom = new WKT().readGeometry(area.wkt)
  68. mapRef.value.znxyMap.fit(geom.getExtent())
  69. }
  70. }
  71. function workerPath(e){
  72. recordRowData.value = e
  73. menuType.value = "grzxqk"
  74. }
  75. function nsAllot(){
  76. title.value = "分配农事"
  77. menuType.value = "ns_allot"
  78. }
  79. const tabValue = ref({})
  80. const handleAct = (v) =>{
  81. tabValue.value = v
  82. }
  83. function selectDay(e){
  84. mapRef.value.znxyMap.refreshTree(curGardenId.value,e)
  85. }
  86. //切换果园
  87. function changeGarden(){
  88. let mymap = mapRef.value.znxyMap
  89. setHideZnxy(false)
  90. mymap.kmap.getView().fit(mymap.gardenLayer.layer.getSource().getExtent(), { duration: 1000, padding: [250, 150, 150, 150] });
  91. }
  92. function setHideZnxy(val){
  93. hideZnxy.value = val
  94. }
  95. onMounted(()=>{
  96. })
  97. </script>
  98. <style lang="scss" scoped>
  99. .body{
  100. min-width:1920px;
  101. width: 100vw;
  102. height: 100vh;
  103. position: relative;
  104. overflow: auto;
  105. }
  106. </style>