chart.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="content">
  3. <l-echart ref="domMyChart" class="echarts"></l-echart>
  4. </view>
  5. </template>
  6. <script setup>
  7. import * as echarts from "echarts";
  8. import { onLoad, onShow, onHide, onLaunch, onResize } from "@dcloudio/uni-app";
  9. import { defineComponent, ref, onMounted, nextTick, watch } from "vue";
  10. const props = defineProps({
  11. currentDateList: {
  12. type: Object,
  13. default: null,
  14. },
  15. });
  16. const domMyChart = ref(null);
  17. let myChart;
  18. let option;
  19. var datas = [];
  20. var planSonCount = 0;
  21. function initData() {
  22. datas = [
  23. {
  24. name: "漏检任务",
  25. value: 0,
  26. },
  27. {
  28. name: "已巡检任务",
  29. value: 0,
  30. },
  31. ];
  32. if (props.currentDateList.length > 0) {
  33. datas[0].value = props.currentDateList[0].undetectedCount;
  34. datas[1].value = props.currentDateList[0].patrolledCount;
  35. planSonCount = props.currentDateList[0].planSonCount;
  36. }
  37. option = {
  38. color: ["#F07D28", "#00CDAC"],
  39. title: [
  40. {
  41. text: "今日巡检情况",
  42. left: "center",
  43. top: 15,
  44. textStyle: {
  45. color: "black",
  46. fontWeight: "normal",
  47. fontSize: 14,
  48. },
  49. },
  50. {
  51. text: [`{value|${planSonCount}}`, "{name|巡检总数}"].join("\n "),
  52. top: "40%",
  53. left: "center",
  54. textStyle: {
  55. color: "black",
  56. fontWeight: "normal",
  57. fontSize: 14,
  58. lineHeight: 22,
  59. rich: {
  60. name: {
  61. fontFamily: "PingFangSC-Regular",
  62. fontSize: 13,
  63. color: "rgba(0,0,0,0.45)",
  64. lineHeight: 22,
  65. marginBottom: "5px",
  66. },
  67. value: {
  68. fontFamily: "HelveticaNeue",
  69. fontSize: 24,
  70. color: "rgba(0,0,0,0.85)",
  71. lineHeight: 30,
  72. },
  73. },
  74. },
  75. },
  76. ],
  77. series: {
  78. type: "pie",
  79. radius: [40, 80],
  80. height: "100%",
  81. left: "center",
  82. width: "100%",
  83. itemStyle: {
  84. borderColor: "#fff",
  85. borderWidth: 1,
  86. },
  87. label: {
  88. alignTo: "edge",
  89. formatter: function (el) {
  90. return `${el.name}\n${el.value}`;
  91. },
  92. minMargin: 5,
  93. edgeDistance: 10,
  94. lineHeight: 20,
  95. rich: {
  96. time: {
  97. fontSize: 10,
  98. color: "#999",
  99. },
  100. },
  101. },
  102. labelLine: {
  103. length: 25,
  104. length2: 0,
  105. maxSurfaceAngle: 80,
  106. },
  107. labelLayout: function (params) {
  108. // var isLeft = params.labelRect.x < myChart.getWidth() / 2;
  109. var isLeft = params.labelRect.x < myChart.nodeWidth / 2;
  110. var points = params.labelLinePoints;
  111. points[2][0] = isLeft ? params.labelRect.x : params.labelRect.x + params.labelRect.width;
  112. return {
  113. labelLinePoints: points,
  114. };
  115. },
  116. data: datas,
  117. },
  118. };
  119. }
  120. function initEcharts() {
  121. // let dom = uni.createSelectorQuery().select("#linEcharts");
  122. // myChart = echarts.init(document.getElementById("linEcharts"));
  123. // 观测更新的数据在 view 层可以直接访问到
  124. // myChart.setOption(option);
  125. myChart = domMyChart.value;
  126. myChart.init(echarts, (myChart) => {
  127. myChart.setOption(option);
  128. });
  129. }
  130. onLoad(() => {
  131. nextTick(() => {
  132. initData();
  133. initEcharts();
  134. });
  135. });
  136. onResize(() => {
  137. myChart.resize();
  138. });
  139. watch(
  140. () => props.currentDateList,
  141. (val) => {
  142. initData();
  143. initEcharts();
  144. }
  145. );
  146. </script>
  147. <style>
  148. .content {
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. justify-content: center;
  153. }
  154. .echarts {
  155. width: 100%;
  156. height: 600rpx;
  157. /* margin-top: 70rpx; */
  158. /* background:pink */
  159. }
  160. </style>