barCharts.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <div class="chart" :id="id"></div>
  3. </template>
  4. <script>
  5. import util from "@/helper/util.js";
  6. import partten from "@/helper/partten.js";
  7. import * as echarts from "echarts";
  8. import dayjs from "dayjs";
  9. export default {
  10. name: "yfdl-multiple-bar-chart",
  11. componentName: "yfdl-multiple-bar-chart",
  12. props: {
  13. width: {
  14. type: String,
  15. default: "100%",
  16. },
  17. height: {
  18. type: String,
  19. default: "100%",
  20. },
  21. // 传入数据
  22. list: {
  23. type: Array,
  24. default: () => [],
  25. },
  26. tabIndex: {
  27. type: Number,
  28. },
  29. },
  30. data() {
  31. return {
  32. id: "",
  33. chart: null,
  34. firstAnimation: true,
  35. };
  36. },
  37. computed: {
  38. xdata() {
  39. return [
  40. "一月",
  41. "二月",
  42. "三月",
  43. "四月",
  44. "五月",
  45. "六月",
  46. "七月",
  47. "八月",
  48. "九月",
  49. "十月",
  50. "十一月",
  51. "十二月",
  52. ];
  53. },
  54. series() {
  55. let result = [];
  56. if (this.list && this.list.length > 0) {
  57. this.list.forEach((listItem, index) => {
  58. let seriesItem = {
  59. name: listItem?.name,
  60. type: "bar",
  61. barMinHeight: 2,
  62. data: listItem?.data,
  63. itemStyle: {
  64. color: listItem.color,
  65. },
  66. barWidth: "20%",
  67. };
  68. if (this.tabIndex == -2) {
  69. if (index == 3) {
  70. seriesItem = {
  71. yAxisIndex: 1,
  72. name: listItem?.name,
  73. type: "line",
  74. smooth: true,
  75. data: listItem?.data,
  76. itemStyle: {
  77. color: listItem.color,
  78. },
  79. };
  80. }
  81. }
  82. result.push(seriesItem);
  83. });
  84. }
  85. return result;
  86. },
  87. },
  88. methods: {
  89. resize() {
  90. this.initChart();
  91. },
  92. initChart() {
  93. let chart = echarts.init(this.$el);
  94. let option = {
  95. tooltip: {
  96. trigger: "axis",
  97. backgroundColor: "rgba(5, 187, 76,0.35)",
  98. borderColor: "#05bb4c",
  99. formatter: function (params) {
  100. var htmlStr = `<div style='margin-bottom:5px'>${params[0].axisValue}</div>`;
  101. for (var i = 0; i < params.length; i++) {
  102. htmlStr += `<div style='margin-bottom:2px'>`;
  103. var param = params[i];
  104. var seriesName = param.seriesName; //图例名称
  105. var value = param.value; //y轴值
  106. var seriesType = param.seriesType; //单位判断code
  107. var mark = param.marker; //点
  108. var unit = `<span style='font-size:14px'>${
  109. seriesType == "line" ? "kW/m²" : "万kWh"
  110. }</span>`;
  111. htmlStr += mark; //一个点
  112. htmlStr += `${seriesName} : ${
  113. value != null ? value + unit : "--"
  114. }`; //圆点后面显示的文本
  115. htmlStr += "</div>";
  116. }
  117. return htmlStr;
  118. },
  119. padding: [10, 10, 3, 10],
  120. textStyle: {
  121. color: "#fff",
  122. fontSize: 16,
  123. },
  124. axisPointer: {
  125. type: "shadow",
  126. shadowStyle: {
  127. color: "rgba(105,105,105, .05)",
  128. width: "1",
  129. },
  130. },
  131. },
  132. legend: {
  133. show: true,
  134. data: this.list.map((i) => i?.name),
  135. right: 56,
  136. icon: "ract",
  137. itemWidth: 8,
  138. itemHeight: 8,
  139. inactiveColor: partten.getColor("gray"),
  140. textStyle: {
  141. fontSize: 12,
  142. color: partten.getColor("grayl"),
  143. },
  144. },
  145. grid: {
  146. top: "10%",
  147. left: "1%",
  148. right: "2%",
  149. bottom: "5%",
  150. containLabel: true,
  151. },
  152. xAxis: [
  153. {
  154. type: "category",
  155. data: this.xdata,
  156. nameLocation: "center",
  157. axisPointer: {
  158. type: "shadow",
  159. },
  160. axisLine: {
  161. lineStyle: {
  162. color: "#93989A",
  163. },
  164. },
  165. axisLabel: {
  166. textStyle: {
  167. fontSize: 14,
  168. color: "#93989A",
  169. },
  170. },
  171. },
  172. ],
  173. yAxis: [
  174. {
  175. type: "value",
  176. name: "单位:万千瓦时",
  177. nameTextStyle: {
  178. color: "#93989A",
  179. },
  180. splitLine: {
  181. show: true,
  182. lineStyle: {
  183. color: "rgba(96,103,105,0.3)",
  184. type: "dashed",
  185. },
  186. },
  187. axisLabel: {
  188. textStyle: {
  189. fontSize: 14,
  190. color: "#93989A",
  191. },
  192. },
  193. },
  194. ],
  195. series: this.series,
  196. };
  197. chart.clear();
  198. if (this.tabIndex == -2) {
  199. option.yAxis.push({
  200. type: "value",
  201. name: "单位:kW/m²",
  202. nameTextStyle: {
  203. color: "#93989A",
  204. },
  205. splitLine: {
  206. show: false,
  207. },
  208. axisLabel: {
  209. textStyle: {
  210. fontSize: 14,
  211. color: "#93989A",
  212. },
  213. },
  214. });
  215. }
  216. chart.setOption(option);
  217. this.resize = function () {
  218. chart.resize();
  219. };
  220. window.addEventListener("resize", this.resize);
  221. },
  222. },
  223. created() {
  224. this.$nextTick(() => {
  225. this.id = "pie-chart-" + util.newGUID();
  226. });
  227. },
  228. mounted() {
  229. this.$nextTick(() => {
  230. this.$el.style.width = this.width;
  231. this.$el.style.height = this.height;
  232. this.initChart();
  233. this.firstAnimation = false;
  234. });
  235. },
  236. updated() {
  237. this.$nextTick(() => {
  238. this.initChart();
  239. });
  240. },
  241. unmounted() {
  242. window.removeEventListener("resize", this.resize);
  243. },
  244. watch: {
  245. "$store.state.themeName"() {
  246. this.initChart();
  247. },
  248. },
  249. };
  250. </script>
  251. <style lang="less">
  252. .chart {
  253. width: 100%;
  254. height: 100%;
  255. display: inline-block;
  256. }
  257. </style>