homePage.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <div class="chart-list">
  3. <div class="chart-item">
  4. <chart-box name="气象预警" arrow="left">
  5. <div class="base-wrap">
  6. <div class="base-item">111</div>
  7. </div>
  8. <one-line-chart></one-line-chart>
  9. </chart-box>
  10. </div>
  11. <div class="chart-item phenology">
  12. <chart-box name="物候调节" arrow="left">
  13. <template #title-left>
  14. <span class="title-left"> - 控梢期</span>
  15. </template>
  16. <bar-chart class="bar-chart" styleName="styleName2" :xData="phenologyXData" :yData="phenologyYData"></bar-chart>
  17. <div class="time-line">
  18. <div class="line">
  19. <!-- <time-line></time-line> -->
  20. <img class="time-img" src="@/assets/images/home/time-line.png" alt="">
  21. </div>
  22. <div class="tips box-bg">
  23. 物候进程:预计 <span>2天</span> 后第三次秋梢完全老熟,进入控梢期
  24. </div>
  25. </div>
  26. </chart-box>
  27. </div>
  28. <div class="chart-item phenology">
  29. <chart-box name="病虫测报" arrow="left">
  30. <!-- <template #title-right>
  31. <div class="btn-group">
  32. <div :class="['btn-item',{active:active===index}]" @click="handleActive(index)" v-for="(item,index) in diseasesBtnGroup" :key="index">{{item}}</div>
  33. </div>
  34. </template> -->
  35. <bar-chart class="bar-chart" styleName="styleName2" :xData="phenologyXData1" :yData="phenologyYData1"></bar-chart>
  36. <div class="time-line">
  37. <div class="line">
  38. <img class="time-img" src="@/assets/images/home/time-line.png" alt="">
  39. </div>
  40. <div class="tips box-bg">
  41. 异常区域中,<span>xx</span> %区域需要 <span>打药</span>,<span>xx</span> %需要 <span>剪枝通风</span>
  42. </div>
  43. </div>
  44. <!-- <pie-chart class="pie-chart" styleName="styleName1"></pie-chart> -->
  45. </chart-box>
  46. </div>
  47. <div class="chart-item evaluate">
  48. <chart-box name="营养评估" arrow="left">
  49. <template #title-left>
  50. <span class="title-left"> - 肥效比</span>
  51. </template>
  52. <div class="content">
  53. <bar-chart styleName="styleName1" :xData="evaluateXData" :yData="evaluateYData"></bar-chart>
  54. <div class="box-bg text">
  55. 目前果园跨度异常比例达到<span>**%</span>,需要提供 <span>叶面肥</span>补充营养
  56. </div>
  57. </div>
  58. <div class="text-list box-bg">
  59. <div class="text-item">
  60. <div class="circle"></div>
  61. <div class="txt">
  62. 肥效比 低<span>**棵树</span>
  63. </div>
  64. </div>
  65. <div class="text-item">
  66. <div class="circle"></div>
  67. <div class="txt">
  68. 肥效比 中<span>**棵树</span>
  69. </div>
  70. </div>
  71. <div class="text-item">
  72. <div class="circle"></div>
  73. <div class="txt">
  74. 肥效比 高<span>**棵树</span>
  75. </div>
  76. </div>
  77. </div>
  78. </chart-box>
  79. </div>
  80. </div>
  81. </template>
  82. <script setup>
  83. import {ref} from 'vue'
  84. import chartBox from "@/components/chartBox.vue";
  85. import timeLine from "@/components/timeLine.vue";
  86. import barChart from "@/components/charts/barChart.vue";
  87. import pieChart from "@/components/charts/pieChart.vue";
  88. import oneLineChart from "@/components/charts/oneLineChart.vue";
  89. // 物候调节
  90. const phenologyXData = ["萌动小叶", "红黄相间", "新梢老熟","白点","花穗伸长"]
  91. const phenologyYData = [{
  92. startNum:130,
  93. endNum:130,
  94. startColor:"#c6ab6b",
  95. endColor:"#4e442e"
  96. },{
  97. startNum:120,
  98. endNum:90,
  99. startColor:"#c6ab6b",
  100. endColor:"#4e442e"
  101. },{
  102. startNum:120,
  103. endNum:1,
  104. startColor:"#c6ab6b",
  105. endColor:"#4e442e"
  106. },{
  107. startNum:130,
  108. endNum:0,
  109. startColor:"#c6ab6b",
  110. endColor:"#4e442e"
  111. },{
  112. startNum:130,
  113. endNum:0,
  114. startColor:"#c6ab6b",
  115. endColor:"#4e442e"
  116. }]
  117. // 病虫测报
  118. const diseasesBtnGroup = ["病害1","病害2","病害3"]
  119. const active = ref(0)
  120. const handleActive = (i) =>{
  121. active.value = i
  122. }
  123. const phenologyXData1 = ["病虫害03", "病害1", "虫害1","病虫害02","病虫害01"]
  124. const phenologyYData1 = [{
  125. startNum:130,
  126. endNum:130,
  127. startColor:"#c6ab6b",
  128. endColor:"#4e442e"
  129. },{
  130. startNum:120,
  131. endNum:90,
  132. startColor:"#c6ab6b",
  133. endColor:"#4e442e"
  134. },{
  135. startNum:120,
  136. endNum:1,
  137. startColor:"#c6ab6b",
  138. endColor:"#4e442e"
  139. },{
  140. startNum:130,
  141. endNum:0,
  142. startColor:"#c6ab6b",
  143. endColor:"#4e442e"
  144. },{
  145. startNum:130,
  146. endNum:0,
  147. startColor:"#c6ab6b",
  148. endColor:"#4e442e"
  149. }]
  150. // 营养评估
  151. const evaluateXData = ["低", "中", "高"]
  152. const evaluateYData = [33, 40, 52]
  153. </script>
  154. <style lang="scss" scoped>
  155. .chart-list {
  156. width: calc(100% - 54px - 10px);
  157. height: 100%;
  158. display: flex;
  159. flex-direction: column;
  160. justify-content: space-between;
  161. .chart-item {
  162. width: 100%;
  163. height: calc(100% / 4);
  164. box-sizing: border-box;
  165. margin-bottom: 10px;
  166. &.chart-item:last-child {
  167. margin: 0;
  168. }
  169. .box-bg{
  170. border-radius: 2px 2px 0 0;
  171. font-size: 12px;
  172. padding: 3px 6px;
  173. box-sizing: border-box;
  174. font-family: Arial, Helvetica, sans-serif;
  175. background: linear-gradient(180deg, rgb(85, 85, 85,0.4) 0%, rgb(35, 35, 35,1) 100%);
  176. span{
  177. color: #FFD489;
  178. }
  179. }
  180. .title-left{
  181. color: rgba(255,255,255,0.7);
  182. font-family: 'SOURCEHANTIFINE';
  183. }
  184. &.phenology{
  185. .bar-chart{
  186. width: 100%;
  187. height: calc(100% - 87px);
  188. }
  189. .time-line{
  190. width: 100%;
  191. height: calc(45px + 34px + 10px);
  192. .line{
  193. width: 100%;
  194. height: calc(100% - 34px - 10px);
  195. margin: 4px 0 6px 0;
  196. .time-img{
  197. width: 100%;
  198. height: 100%;
  199. }
  200. }
  201. .tips{
  202. width: 100%;
  203. height: 34px;
  204. line-height: 28px;
  205. }
  206. }
  207. }
  208. &.diseases{
  209. .btn-group{
  210. font-size: 11px;
  211. display: flex;
  212. align-items: center;
  213. .btn-item{
  214. border-radius: 2px;
  215. padding: 2px 4px;
  216. margin-left: 8px;
  217. cursor: pointer;
  218. &.active{
  219. background: #4F4F4F;
  220. }
  221. }
  222. }
  223. .pie-chart{
  224. width: 100%;
  225. height: calc(100% - 57px - 10px);
  226. margin-bottom: 10px;
  227. }
  228. }
  229. &.evaluate {
  230. .content {
  231. width: 100%;
  232. height: calc(100% - 33px - 10px);
  233. display: flex;
  234. align-items: center;
  235. justify-content: space-between;
  236. margin-bottom: 10px;
  237. .text{
  238. font-weight: 400;
  239. padding: 8px 0 4px 5px;
  240. text-indent: 2em;
  241. margin-left: 8px;
  242. span{
  243. color: #FFD489;
  244. }
  245. }
  246. }
  247. .text-list {
  248. width: 100%;
  249. height: 33px;
  250. display: flex;
  251. align-items: flex-start;
  252. justify-content: space-between;
  253. .text-item{
  254. display: flex;
  255. align-items: center;
  256. .circle{
  257. width: 4px;
  258. height: 4px;
  259. background: rgba(255,255,255,0.44);
  260. border-radius: 50%;
  261. margin-right: 6px;
  262. }
  263. .txt{
  264. font-size: 12px;
  265. span{
  266. color: #FFD489;
  267. }
  268. }
  269. }
  270. }
  271. }
  272. }
  273. }
  274. </style>