index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 name="果园日志"></chart-box>
  17. </div>
  18. <div class="file-box yes-events">
  19. <chart-box name="果园档案">
  20. <template #title-right>
  21. <el-icon class="arrow-icon cursor-pointer" color="#141414"
  22. ><DArrowLeft
  23. /></el-icon>
  24. <div class="edit-btn cursor-pointer" @click="toFilePage">编辑</div>
  25. </template>
  26. <file-bar></file-bar>
  27. </chart-box>
  28. </div>
  29. </div>
  30. <div class="right yes-events">
  31. <div class="list">
  32. <chart-box name="农事列表" arrow="arrow-left"></chart-box>
  33. </div>
  34. <tool-list direction="right" :list="rightToolList"></tool-list>
  35. </div>
  36. </div>
  37. </div>
  38. <div ref="mapRef" class="bottom-map"></div>
  39. </template>
  40. <script setup>
  41. import { onMounted, ref } from "vue";
  42. import fnHeader from "@/components/fnHeader.vue";
  43. import navigation from "@/components/navigation.vue";
  44. import chartBox from "@/components/chartBox.vue";
  45. import toolList from "@/components/toolList.vue";
  46. import fileBar from "@/components/fileBar.vue";
  47. import HomeMap from "./homeMap";
  48. import homePage from "./components/homePage.vue";
  49. import weatherPage from "./components/weatherPage.vue";
  50. import phenologyPage from "./components/phenologyPage.vue";
  51. import { useRouter } from "vue-router";
  52. import SamplePointLayer from "./samplePointLayer";
  53. import {useStore} from "vuex";
  54. let store = useStore()
  55. const components = {
  56. homePage,
  57. weatherPage,
  58. phenologyPage,
  59. };
  60. //当前农场
  61. const currentFarm = {
  62. id: store.getters.userinfo.curFarmId,
  63. name: store.getters.userinfo.curFarmName,
  64. }
  65. //当前区域
  66. const currentRegion = {
  67. id: null,
  68. name: null
  69. }
  70. let homeMap = new HomeMap();
  71. let samplePointLayer = null
  72. const router = useRouter();
  73. const mapRef = ref();
  74. onMounted(() => {
  75. homeMap.initMap(store.getters.userinfo.location, mapRef.value);
  76. samplePointLayer = new SamplePointLayer(homeMap.kmap.map, currentFarm, currentRegion)
  77. });
  78. const currentComponent = ref("homePage");
  79. const handleActiveLeft = (e) => {
  80. currentComponent.value = e.componentName;
  81. };
  82. const leftToolList = [
  83. {
  84. title: "首页",
  85. name: "home",
  86. componentName: "homePage",
  87. },
  88. {
  89. title: "气象预警",
  90. componentName: "weatherPage",
  91. },
  92. {
  93. title: "物候调节",
  94. componentName: "phenologyPage",
  95. },
  96. {
  97. title: "病虫测报",
  98. },
  99. {
  100. title: "营养评估",
  101. },
  102. ];
  103. const rightToolList = [
  104. {
  105. title: "农事列表",
  106. },
  107. {
  108. title: "新增农事",
  109. },
  110. {
  111. title: "复核对比",
  112. },
  113. ];
  114. // 跳转果园档案
  115. const toFilePage = () => {
  116. router.push('/garden-file')
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. .base-container {
  121. width: 100%;
  122. height: 100vh;
  123. color: #fff;
  124. position: absolute;
  125. box-sizing: border-box;
  126. z-index: 1;
  127. .content {
  128. width: 100%;
  129. height: calc(100% - 74px - 48px);
  130. display: flex;
  131. justify-content: space-between;
  132. box-sizing: border-box;
  133. .left,
  134. .right {
  135. width: calc(376px + 54px);
  136. height: 100%;
  137. padding-top: 10px;
  138. box-sizing: border-box;
  139. display: flex;
  140. }
  141. .right {
  142. .list {
  143. width: 100%;
  144. height: 100%;
  145. }
  146. }
  147. .home-bottom {
  148. display: flex;
  149. align-items: flex-end;
  150. width: calc(100% - 430px - 430px - 72px);
  151. height: 100%;
  152. align-self: flex-end;
  153. .log-box {
  154. height: 30%;
  155. width: calc(100% - 340px - 28px);
  156. margin-right: 28px;
  157. }
  158. .file-box {
  159. height: 25%;
  160. min-height: 210px;
  161. width: 340px;
  162. position: relative;
  163. .arrow-icon {
  164. top: -32px;
  165. left: 50%;
  166. position: absolute;
  167. background: #fff;
  168. width: 16px;
  169. height: 80px;
  170. line-height: 80px;
  171. border-radius: 5px 0 0 5px;
  172. text-align: center;
  173. transform: translateX(-50%) rotate(270deg);
  174. }
  175. .edit-btn {
  176. padding: 2px 24px;
  177. background: #2199f8;
  178. border-radius: 4px;
  179. }
  180. }
  181. }
  182. }
  183. }
  184. .bottom-map {
  185. width: 100%;
  186. height: 100vh;
  187. position: absolute;
  188. z-index: 0;
  189. }
  190. </style>