analyse.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <!--
  2. * @Description: 近30日实收分析
  3. * @Author: wangcc
  4. * @Date: 2023-01-11 15:28:30
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2023-01-29 13:57:40
  7. * @FilePath: \parking_LargeScreen\src\components\Receivables\analyse.vue
  8. * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="PercenTage-box">
  12. <div class="PieChart">
  13. <div class="rankTitle">
  14. <h3>近30日实收分析</h3>
  15. </div>
  16. <div class="pieChart-box">
  17. <bar-charts :option="echartsData" v-if="hackReset"></bar-charts>
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import barCharts from '@/components/charts/barCharts.vue';
  24. import { income } from '@/api/http';
  25. export default {
  26. name: 'analyse',
  27. components: {
  28. barCharts
  29. },
  30. data() {
  31. return {
  32. echartsData: {
  33. barRData: [],
  34. xData: [],
  35. yData: []
  36. },
  37. hackReset: false,
  38. searchFrom: {
  39. isRoad: '1'
  40. },
  41. setTime: ''
  42. };
  43. },
  44. created() {
  45. this.getIncome();
  46. },
  47. watch: {
  48. '$store.state.addr.isRoad': {
  49. handler(val) {
  50. this.searchFrom.isRoad = val;
  51. this.getIncome();
  52. }
  53. }
  54. },
  55. mounted() {
  56. let _this = this;
  57. this.setTime = setInterval(function () {
  58. _this.getIncome();
  59. }, 30000);
  60. },
  61. methods: {
  62. clearTime() {
  63. clearInterval(this.setTime);
  64. },
  65. getTimeAnalysis() {
  66. this.echartsData.xData = this.echartsData.barRData.map((item) => {
  67. return item.time;
  68. });
  69. this.echartsData.yData = this.echartsData.barRData.map((item) => {
  70. return item.num;
  71. });
  72. },
  73. getIncome() {
  74. this.hackReset = false;
  75. income(this.searchFrom).then((res) => {
  76. if (res.code == 200) {
  77. this.hackReset = true;
  78. this.echartsData.barRData = res.data.map((item) => {
  79. let data = {};
  80. data.time = item.payTime;
  81. data.num = item.realAmount;
  82. return data;
  83. });
  84. this.echartsData.xData = this.echartsData.barRData.map((item) => {
  85. return item.time;
  86. });
  87. this.echartsData.yData = this.echartsData.barRData.map((item) => {
  88. return item.num;
  89. });
  90. }
  91. });
  92. }
  93. }
  94. };
  95. </script>
  96. <style lang='scss' scoped>
  97. .PercenTage-box {
  98. position: absolute;
  99. left: 21px;
  100. right: 21px;
  101. bottom: 20px;
  102. overflow: hidden;
  103. z-index: 1001;
  104. .PieChart {
  105. width: 100%;
  106. background: linear-gradient(90deg, #293446 0%, rgba(41, 52, 70, 0.2) 100%);
  107. backdrop-filter: blur(10px);
  108. overflow: hidden;
  109. padding: 18px 0;
  110. .rankTitle {
  111. text-align: left;
  112. padding-left: 20px;
  113. font-size: 16px;
  114. color: #ffffff;
  115. /* line-height: 22px; */
  116. margin-bottom: 12px;
  117. display: flex;
  118. height: 22px;
  119. align-items: center;
  120. }
  121. .rankTitle::before {
  122. content: '';
  123. width: 16px;
  124. height: 15px;
  125. display: inline-block;
  126. background-image: url('@/assets/images/check.png');
  127. background-size: 100% 100%;
  128. margin-right: 10px;
  129. }
  130. .pieChart-box {
  131. padding: 0 20px;
  132. height: 165px;
  133. }
  134. }
  135. }
  136. </style>