homePage.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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="phenologyXData" :yData="phenologyYData"></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:44,
  93. endNum:0,
  94. startColor:"#E6AD00",
  95. endColor:"#232323"
  96. },{
  97. startNum:33,
  98. endNum:22,
  99. startColor:"#FF7C8F",
  100. endColor:"#232323"
  101. },{
  102. startNum:30,
  103. endNum:28,
  104. startColor:"#0BFE13",
  105. endColor:"#232323"
  106. }]
  107. // 病虫测报
  108. const diseasesBtnGroup = ["病害1","病害2","病害3"]
  109. const active = ref(0)
  110. const handleActive = (i) =>{
  111. active.value = i
  112. }
  113. // 营养评估
  114. const evaluateXData = ["低", "中", "高"]
  115. const evaluateYData = [33, 40, 52]
  116. </script>
  117. <style lang="scss" scoped>
  118. .chart-list {
  119. width: calc(100% - 54px - 10px);
  120. height: 100%;
  121. display: flex;
  122. flex-direction: column;
  123. justify-content: space-between;
  124. .chart-item {
  125. width: 100%;
  126. height: calc(100% / 4);
  127. box-sizing: border-box;
  128. margin-bottom: 10px;
  129. &.chart-item:last-child {
  130. margin: 0;
  131. }
  132. .box-bg{
  133. border-radius: 2px 2px 0 0;
  134. font-size: 12px;
  135. padding: 3px 6px;
  136. box-sizing: border-box;
  137. font-family: Arial, Helvetica, sans-serif;
  138. background: linear-gradient(180deg, rgb(85, 85, 85,0.4) 0%, rgb(35, 35, 35,1) 100%);
  139. span{
  140. color: #FFD489;
  141. }
  142. }
  143. .title-left{
  144. color: rgba(255,255,255,0.7);
  145. font-family: 'SOURCEHANTIFINE';
  146. }
  147. &.phenology{
  148. .bar-chart{
  149. width: 100%;
  150. height: calc(100% - 87px);
  151. }
  152. .time-line{
  153. width: 100%;
  154. height: calc(45px + 34px + 10px);
  155. .line{
  156. width: 100%;
  157. height: calc(100% - 34px - 10px);
  158. margin: 4px 0 6px 0;
  159. .time-img{
  160. width: 100%;
  161. height: 100%;
  162. }
  163. }
  164. .tips{
  165. width: 100%;
  166. height: 34px;
  167. line-height: 28px;
  168. }
  169. }
  170. }
  171. &.diseases{
  172. .btn-group{
  173. font-size: 11px;
  174. display: flex;
  175. align-items: center;
  176. .btn-item{
  177. border-radius: 2px;
  178. padding: 2px 4px;
  179. margin-left: 8px;
  180. cursor: pointer;
  181. &.active{
  182. background: #4F4F4F;
  183. }
  184. }
  185. }
  186. .pie-chart{
  187. width: 100%;
  188. height: calc(100% - 57px - 10px);
  189. margin-bottom: 10px;
  190. }
  191. }
  192. &.evaluate {
  193. .content {
  194. width: 100%;
  195. height: calc(100% - 33px - 10px);
  196. display: flex;
  197. align-items: center;
  198. justify-content: space-between;
  199. margin-bottom: 10px;
  200. .text{
  201. font-weight: 400;
  202. padding: 8px 0 4px 5px;
  203. text-indent: 2em;
  204. margin-left: 8px;
  205. span{
  206. color: #FFD489;
  207. }
  208. }
  209. }
  210. .text-list {
  211. width: 100%;
  212. height: 33px;
  213. display: flex;
  214. align-items: flex-start;
  215. justify-content: space-between;
  216. .text-item{
  217. display: flex;
  218. align-items: center;
  219. .circle{
  220. width: 4px;
  221. height: 4px;
  222. background: rgba(255,255,255,0.44);
  223. border-radius: 50%;
  224. margin-right: 6px;
  225. }
  226. .txt{
  227. font-size: 12px;
  228. span{
  229. color: #FFD489;
  230. }
  231. }
  232. }
  233. }
  234. }
  235. }
  236. }
  237. </style>