123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <div class="chart-list">
- <div class="chart-item">
- <chart-box name="气象预警" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="物候调节" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="病虫测报" arrow="left"></chart-box>
- </div>
- <div class="chart-item evaluate">
- <chart-box name="营养评估" arrow="left">
- <div class="content">
- <bar-chart styleName="styleName1"></bar-chart>
- <div class="box-bg text">
- 目前果园跨度异常比例达到<span>**%</span>,需要提供 <span>叶面肥</span>补充营养
- </div>
- </div>
- <div class="text-list box-bg">
- <div class="text-item" v-for="item in 3" :key="item">
- <div class="circle"></div>
- <div class="txt">
- 物候跨度正常<span>**棵树</span>,
- 跨度<span>2个物候期</span>
- </div>
- </div>
- </div>
- </chart-box>
- </div>
- </div>
- </template>
- <script setup>
- import chartBox from "@/components/chartBox.vue";
- import barChart from "@/components/charts/barChart.vue";
- </script>
- <style lang="scss" scoped>
- .chart-list {
- width: calc(100% - 54px - 10px);
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .chart-item {
- width: 100%;
- height: calc(100% / 4);
- box-sizing: border-box;
- margin-bottom: 10px;
- &.chart-item:last-child {
- margin: 0;
- }
- &.evaluate {
- .content {
- width: 100%;
- height: calc(100% - 68px - 10px);
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10px;
- .text{
- color: rgba(255,255,255,0.7);
- font-weight: 400;
- font-size: 12px;
- padding: 8px 0 4px 5px;
- text-indent: 2em;
- margin-left: 8px;
- span{
- color: #69BDFF;
- }
- }
- }
- .box-bg{
- border-radius: 2px 2px 0 0;
- background: linear-gradient(180deg, rgb(85, 85, 85,0.4) 0%, rgb(35, 35, 35,1) 100%);
- }
- .text-list {
- width: 100%;
- height: 68px;
- padding: 3px 6px;
- box-sizing: border-box;
- .text-item{
- display: flex;
- align-items: center;
- margin-bottom: 5px;
- .circle{
- width: 4px;
- height: 4px;
- background: rgba(255,255,255,0.44);
- border-radius: 50%;
- margin-right: 6px;
- }
- .txt{
- font-size: 12px;
- span{
- color: #69BDFF;
- }
- }
- }
- }
- }
- }
- }
- </style>
|