wind-monitor.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <div class="windMonitor">
  3. <div class="title-top" @click="getDetail">风量监测</div>
  4. <div class="wind-contents">
  5. <div class="wind-bar" ref="windBar"></div>
  6. </div>
  7. </div>
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref, reactive, nextTick, onMounted, defineProps, watch } from 'vue';
  11. import * as echarts from 'echarts';
  12. const emit = defineEmits(['goDetail'])
  13. let props = defineProps({
  14. flList: Array,
  15. });
  16. //获取dom节点
  17. let windBar = ref<any>();
  18. //echart数据
  19. let echartData = reactive<any>({ ydata: [], xdata: [] });
  20. //跳转详情
  21. function getDetail() {
  22. emit('goDetail', 'windrect')
  23. }
  24. function getOption() {
  25. nextTick(() => {
  26. const color = '#66ffff';
  27. const barWidth = 0.1; // 柱条占比
  28. function renderItem(params, api) {
  29. const topCenter = api.coord([api.value(0), api.value(1)]); // 顶点中心
  30. const width = api.size([0, 1])[0] * barWidth; // 宽度
  31. const ballRadius = width * 0.8;
  32. return {
  33. type: 'group',
  34. children: [
  35. {
  36. // 圆形装饰
  37. type: 'circle',
  38. shape: {
  39. cx: topCenter[0],
  40. cy: topCenter[1],
  41. r: ballRadius,
  42. },
  43. style: api.style({
  44. fill: '#66ffff',
  45. stroke: color,
  46. lineWidth: 2,
  47. }),
  48. },
  49. ],
  50. };
  51. }
  52. const myChart = echarts.init(windBar.value);
  53. let option = {
  54. color: [color],
  55. tooltip: {
  56. trigger: 'item',
  57. show: true,
  58. formatter: function (p) {
  59. console.info(p);
  60. return p.marker + p.name + ' : ' + p.value;
  61. },
  62. },
  63. grid: {
  64. left: '8%',
  65. top: '15%',
  66. bottom: '32%',
  67. right: '8%',
  68. // containLabel: true
  69. },
  70. xAxis: {
  71. type: 'category',
  72. data: echartData.xdata,
  73. axisLabel: {
  74. formatter: function (params) {
  75. var newParamsName = ''; // 最终拼接成的字符串
  76. var paramsNameNumber = params.length; // 实际标签的个数
  77. var provideNumber = 6; // 每行能显示的字的个数
  78. var rowNumber = Math.ceil(paramsNameNumber / provideNumber); // 换行的话,需要显示几行,向上取整
  79. /**
  80. * 判断标签的个数是否大于规定的个数, 如果大于,则进行换行处理 如果不大于,即等于或小于,就返回原标签
  81. */
  82. // 条件等同于rowNumber>1
  83. if (paramsNameNumber > provideNumber) {
  84. /** 循环每一行,p表示行 */
  85. for (var p = 0; p < rowNumber; p++) {
  86. var tempStr = ''; // 表示每一次截取的字符串
  87. var start = p * provideNumber; // 开始截取的位置
  88. var end = start + provideNumber; // 结束截取的位置
  89. // 此处特殊处理最后一行的索引值
  90. if (p == rowNumber - 1) {
  91. // 最后一次不换行
  92. tempStr = params.substring(start, paramsNameNumber);
  93. } else {
  94. // 每一次拼接字符串并换行
  95. tempStr = params.substring(start, end) + '\n';
  96. }
  97. newParamsName += tempStr; // 最终拼成的字符串
  98. }
  99. } else {
  100. // 将旧标签的值赋给新标签
  101. newParamsName = params;
  102. }
  103. //将最终的字符串返回
  104. return newParamsName;
  105. },
  106. fontSize: 14,
  107. margin: 10,
  108. interval: 0,
  109. textStyle: {
  110. color: '#b3b8cc',
  111. },
  112. },
  113. axisLine: {
  114. lineStyle: {
  115. color: 'rgba(62, 103, 164)',
  116. },
  117. },
  118. splitLine: {
  119. show: false,
  120. },
  121. axisTick: {
  122. show: false,
  123. },
  124. },
  125. yAxis: {
  126. type: 'value',
  127. name: '(m³/min)',
  128. max: 5000,
  129. axisLabel: {
  130. textStyle: {
  131. fontSize: 14,
  132. color: '#b3b8cc',
  133. },
  134. },
  135. nameTextStyle: {
  136. color: '#fff',
  137. fontSize: 12,
  138. lineHeight: 10,
  139. },
  140. splitLine: {
  141. lineStyle: {
  142. color: 'rgba(62, 103, 164,.4)',
  143. },
  144. },
  145. axisLine: {
  146. show: false,
  147. },
  148. axisTick: {
  149. show: false,
  150. },
  151. },
  152. series: [
  153. {
  154. data: echartData.ydata,
  155. type: 'bar',
  156. barWidth: barWidth * 100 + '%',
  157. itemStyle: {
  158. color: {
  159. x: 0,
  160. y: 0,
  161. x2: 0,
  162. y2: 1,
  163. colorStops: [
  164. {
  165. offset: 0,
  166. color: 'rgba(85, 255, 237, 1)', // 0% 处的颜色
  167. },
  168. {
  169. offset: 1,
  170. color: 'rgba(66, 142, 255, 0.1)', // 100% 处的颜色
  171. },
  172. ],
  173. },
  174. },
  175. label: {
  176. normal: {
  177. show: true,
  178. position: ['-7', '-28'],
  179. formatter: [' {a|{c}}'].join(','),
  180. rich: {
  181. a: {
  182. color: '#fff',
  183. align: 'center',
  184. },
  185. },
  186. },
  187. },
  188. },
  189. {
  190. data: echartData.ydata,
  191. type: 'custom',
  192. renderItem: renderItem,
  193. zlevel: 2,
  194. },
  195. ],
  196. };
  197. myChart.setOption(option);
  198. window.onresize = function () {
  199. myChart.resize();
  200. };
  201. });
  202. }
  203. watch(
  204. () => props.flList,
  205. (val) => {
  206. console.log(val, '测风数据');
  207. echartData.xdata.length = 0;
  208. echartData.ydata.length = 0;
  209. val.forEach((el) => {
  210. echartData.xdata.push(el.strinstallpos);
  211. echartData.ydata.push(el.readData.m3);
  212. });
  213. getOption();
  214. },
  215. {
  216. deep: true,
  217. }
  218. );
  219. onMounted(() => {});
  220. </script>
  221. <style lang="less" scoped>
  222. .windMonitor {
  223. width: 100%;
  224. height: 100%;
  225. position: relative;
  226. .title-top {
  227. position: absolute;
  228. top: 9px;
  229. left: 46px;
  230. color: #fff;
  231. font-size: 16px;
  232. font-family: 'douyuFont';
  233. cursor: pointer;
  234. &:hover {
  235. color: #66ffff;
  236. }
  237. }
  238. .wind-contents {
  239. position: absolute;
  240. left: 0;
  241. top: 36px;
  242. width: 100%;
  243. height: calc(100% - 36px);
  244. .wind-bar {
  245. width: 100%;
  246. height: 100%;
  247. }
  248. }
  249. }
  250. </style>