index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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="果园日志">
  17. <div class="log-content">
  18. 10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。10月8日,共抽样 **棵树 ,拍摄了 多少 张照片。
  19. </div>
  20. <div class="chart-wrap">
  21. <indicator-chart></indicator-chart>
  22. </div>
  23. </chart-box>
  24. </div>
  25. <div class="file-box yes-events">
  26. <chart-box name="果园档案">
  27. <template #title-right>
  28. <el-icon class="arrow-icon cursor-pointer" color="#141414"
  29. ><DArrowLeft
  30. /></el-icon>
  31. <div class="edit-btn cursor-pointer" @click="toFilePage">编辑</div>
  32. </template>
  33. <file-bar></file-bar>
  34. </chart-box>
  35. </div>
  36. </div>
  37. <div class="right yes-events">
  38. <div class="list">
  39. <chart-box name="农事列表" arrow="arrow-left">
  40. <div class="img-box">
  41. <img src="@/assets/images/home/ns.png" alt="">
  42. </div>
  43. </chart-box>
  44. </div>
  45. <tool-list direction="right" :list="rightToolList"></tool-list>
  46. </div>
  47. <!-- 图例 -->
  48. <img class="legend" src="@/assets/images/home/legend.png" alt="">
  49. </div>
  50. </div>
  51. <div ref="mapRef" class="bottom-map"></div>
  52. </template>
  53. <script setup>
  54. import { onMounted, ref } from "vue";
  55. import fnHeader from "@/components/fnHeader.vue";
  56. import navigation from "@/components/navigation.vue";
  57. import chartBox from "@/components/chartBox.vue";
  58. import toolList from "@/components/toolList.vue";
  59. import fileBar from "@/components/fileBar.vue";
  60. import HomeMap from "./map/homeMap";
  61. import homePage from "./components/homePage.vue";
  62. import weatherPage from "./components/weatherPage.vue";
  63. import phenologyPage from "./components/phenologyPage.vue";
  64. import indicatorChart from "./components/indicatorChart.vue";
  65. import { useRouter } from "vue-router";
  66. import SamplePointLayer from "./map/samplePointLayer";
  67. import {useStore} from "vuex";
  68. import RegionLayer from "./map/regionLayer";
  69. let store = useStore()
  70. const components = {
  71. homePage,
  72. weatherPage,
  73. phenologyPage,
  74. };
  75. //当前农场
  76. const currentFarm = {
  77. id: store.getters.userinfo.curFarmId,
  78. name: store.getters.userinfo.curFarmName,
  79. }
  80. //当前区域
  81. const currentRegion = {
  82. id: null,
  83. name: null
  84. }
  85. let homeMap = new HomeMap();
  86. let samplePointLayer = null
  87. let regionLayer = null
  88. const router = useRouter();
  89. const mapRef = ref();
  90. onMounted(() => {
  91. homeMap.initMap(store.getters.userinfo.location, mapRef.value);
  92. samplePointLayer = new SamplePointLayer(homeMap.kmap.map, currentFarm, currentRegion)
  93. regionLayer = new RegionLayer(homeMap.kmap.map, currentFarm, currentRegion)
  94. });
  95. const currentComponent = ref("homePage");
  96. const handleActiveLeft = (e) => {
  97. currentComponent.value = e.componentName;
  98. };
  99. const leftToolList = [
  100. {
  101. title: "首页",
  102. name: "home",
  103. componentName: "homePage",
  104. },
  105. {
  106. title: "气象预警",
  107. componentName: "weatherPage",
  108. },
  109. {
  110. title: "物候调节",
  111. componentName: "phenologyPage",
  112. },
  113. {
  114. title: "病虫测报",
  115. },
  116. {
  117. title: "营养评估",
  118. },
  119. ];
  120. const rightToolList = [
  121. {
  122. title: "农事列表",
  123. },
  124. {
  125. title: "复核对比",
  126. },
  127. {
  128. title: "处方分析",
  129. },
  130. ];
  131. // 跳转果园档案
  132. const toFilePage = () => {
  133. router.push('/garden-file')
  134. }
  135. </script>
  136. <style lang="scss" scoped>
  137. .base-container {
  138. width: 100%;
  139. height: 100vh;
  140. color: #fff;
  141. position: absolute;
  142. box-sizing: border-box;
  143. z-index: 1;
  144. .content {
  145. width: 100%;
  146. height: calc(100% - 74px - 48px);
  147. display: flex;
  148. justify-content: space-between;
  149. box-sizing: border-box;
  150. .left,
  151. .right {
  152. width: calc(376px + 54px);
  153. height: 100%;
  154. padding-top: 10px;
  155. box-sizing: border-box;
  156. display: flex;
  157. }
  158. .right {
  159. .list {
  160. width: 100%;
  161. height: 100%;
  162. .img-box{
  163. width: 100%;
  164. height: 100%;
  165. overflow: hidden;
  166. }
  167. img{
  168. width: 100%;
  169. height: auto;
  170. object-fit: cover;
  171. }
  172. }
  173. }
  174. .home-bottom {
  175. display: flex;
  176. align-items: flex-end;
  177. width: calc(100% - 430px - 430px - 72px);
  178. height: 100%;
  179. align-self: flex-end;
  180. .log-box {
  181. height: 34%;
  182. width: calc(100% - 340px - 28px);
  183. margin-right: 28px;
  184. .log-content {
  185. font-size: 12px;
  186. line-height: 1.5;
  187. padding: 0 18px;
  188. }
  189. }
  190. .file-box {
  191. height: 25%;
  192. min-height: 210px;
  193. width: 340px;
  194. position: relative;
  195. .arrow-icon {
  196. top: -32px;
  197. left: 50%;
  198. position: absolute;
  199. background: #fff;
  200. width: 16px;
  201. height: 80px;
  202. line-height: 80px;
  203. border-radius: 5px 0 0 5px;
  204. text-align: center;
  205. transform: translateX(-50%) rotate(270deg);
  206. }
  207. .edit-btn {
  208. padding: 2px 24px;
  209. background: #FFD489;
  210. border-radius: 4px;
  211. color: #000;
  212. }
  213. }
  214. }
  215. .legend{
  216. position: fixed;
  217. bottom: 8px;
  218. right: 64px;
  219. width: 525px;
  220. height: 16px;
  221. }
  222. }
  223. }
  224. .bottom-map {
  225. width: 100%;
  226. height: 100vh;
  227. position: absolute;
  228. z-index: 0;
  229. }
  230. </style>