homePage.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <div class="chart-list">
  3. <div class="chart-item">
  4. <chart-box name="气象预警" arrow="left"></chart-box>
  5. </div>
  6. <div class="chart-item">
  7. <chart-box name="物候调节" arrow="left"></chart-box>
  8. </div>
  9. <div class="chart-item">
  10. <chart-box name="病虫测报" arrow="left"></chart-box>
  11. </div>
  12. <div class="chart-item evaluate">
  13. <chart-box name="营养评估" arrow="left">
  14. <div class="content">
  15. <bar-chart styleName="styleName1"></bar-chart>
  16. <div class="box-bg text">
  17. 目前果园跨度异常比例达到<span>**%</span>,需要提供 <span>叶面肥</span>补充营养
  18. </div>
  19. </div>
  20. <div class="text-list box-bg">
  21. <div class="text-item" v-for="item in 3" :key="item">
  22. <div class="circle"></div>
  23. <div class="txt">
  24. 物候跨度正常<span>**棵树</span>,
  25. 跨度<span>2个物候期</span>
  26. </div>
  27. </div>
  28. </div>
  29. </chart-box>
  30. </div>
  31. </div>
  32. </template>
  33. <script setup>
  34. import chartBox from "@/components/chartBox.vue";
  35. import barChart from "@/components/charts/barChart.vue";
  36. </script>
  37. <style lang="scss" scoped>
  38. .chart-list {
  39. width: calc(100% - 54px - 10px);
  40. height: 100%;
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: space-between;
  44. .chart-item {
  45. width: 100%;
  46. height: calc(100% / 4);
  47. box-sizing: border-box;
  48. margin-bottom: 10px;
  49. &.chart-item:last-child {
  50. margin: 0;
  51. }
  52. &.evaluate {
  53. .content {
  54. width: 100%;
  55. height: calc(100% - 68px - 10px);
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. margin-bottom: 10px;
  60. .text{
  61. color: rgba(255,255,255,0.7);
  62. font-weight: 400;
  63. font-size: 12px;
  64. padding: 8px 0 4px 5px;
  65. text-indent: 2em;
  66. margin-left: 8px;
  67. span{
  68. color: #69BDFF;
  69. }
  70. }
  71. }
  72. .box-bg{
  73. border-radius: 2px 2px 0 0;
  74. background: linear-gradient(180deg, rgb(85, 85, 85,0.4) 0%, rgb(35, 35, 35,1) 100%);
  75. }
  76. .text-list {
  77. width: 100%;
  78. height: 68px;
  79. padding: 3px 6px;
  80. box-sizing: border-box;
  81. .text-item{
  82. display: flex;
  83. align-items: center;
  84. margin-bottom: 5px;
  85. .circle{
  86. width: 4px;
  87. height: 4px;
  88. background: rgba(255,255,255,0.44);
  89. border-radius: 50%;
  90. margin-right: 6px;
  91. }
  92. .txt{
  93. font-size: 12px;
  94. span{
  95. color: #69BDFF;
  96. }
  97. }
  98. }
  99. }
  100. }
  101. }
  102. }
  103. </style>