windChartCom.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <div class="home_card" >
  3. <!-- <div class="header"> <img src="@/../public/img/home/arrows.png"> {{CurveTitle}}曲线</div> -->
  4. <div class="windChart" >
  5. <div :id="chartId" :style="{ width: width, height: height }"></div>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import * as echarts from 'echarts';
  11. import dayjs from "dayjs";
  12. export default {
  13. name:'windChartCom',
  14. props:{
  15. width:{
  16. type:String,
  17. default:'100%',
  18. },
  19. height:{
  20. type:String,
  21. default:'70vh',
  22. },
  23. CurveTitle:{
  24. type:String,
  25. required:true,
  26. },
  27. chartShow:{
  28. type:Boolean,
  29. required:true,
  30. default:false,
  31. },
  32. windCurveValues: {
  33. type: Array,
  34. required: true,
  35. },
  36. chartId:{
  37. type:String,
  38. required:true,
  39. }
  40. },
  41. async created() {
  42. },
  43. mounted() {
  44. this.$nextTick(()=>{
  45. this.getChart();
  46. })
  47. },
  48. data(){
  49. return{
  50. emptyData:[],
  51. }
  52. },
  53. methods:{
  54. getChart(){
  55. var chartDom = document.getElementById(this.chartId);
  56. var myChart = echarts.init(chartDom); // 绘制图表
  57. var options= {
  58. title: {},
  59. tooltip: {
  60. trigger: 'axis',
  61. "backgroundColor": "rgba(0, 0, 0, 0.3)",
  62. textStyle: {
  63. color: "white" //设置文字颜色
  64. },
  65. },
  66. legend: {
  67. top: '6%',
  68. right: '2%',
  69. textStyle: {
  70. fontSize: '12',
  71. color: '#A4A4A5'
  72. },
  73. orient: 'vertical',
  74. icon: 'roundRect',
  75. itemWidth: 5,
  76. itemHeight: 5,
  77. itemGap: 7
  78. },
  79. xAxis: {
  80. // type: 'category',
  81. // name: 'x',
  82. axisLabel:{
  83. interval:11,
  84. showMinLabel: true,
  85. showMaxLabel: true,
  86. textStyle: {
  87. color: '#606769',
  88. },
  89. },
  90. axisLine: {
  91. lineStyle: {
  92. color: '#606769', //x轴的颜色
  93. width: 1, //轴线的宽度
  94. },
  95. },
  96. splitLine: { show: false },
  97. data: this.getTimeStanp,
  98. },
  99. yAxis: {
  100. type: 'value',
  101. splitNumber:3,
  102. splitLine: {
  103. show: false,
  104. textStyle: {
  105. color: '#606769',
  106. },
  107. },
  108. axisLine: {
  109. lineStyle: {
  110. color: '#606769', // y轴的颜色
  111. width: 1, //y轴线的宽度
  112. },
  113. },
  114. },
  115. grid: [
  116. {
  117. left: 40,
  118. right: 40,
  119. top: 20,
  120. bottom: 30
  121. }
  122. ],
  123. series: [
  124. {
  125. name:this.CurveTitle,
  126. type: 'line',
  127. smooth: true,
  128. symbol: 'none',
  129. areaStyle: {
  130. opacity: 0.7,
  131. color: new echarts.graphic.LinearGradient(0, 0, 2, 1, [
  132. {
  133. offset: 0,
  134. color: 'rgba(53, 150, 235, 1)'
  135. },
  136. {
  137. offset: 1,
  138. color: 'rgba(18, 32, 50, 0.2)'
  139. }
  140. ])
  141. },
  142. lineStyle: {
  143. width: 1
  144. },
  145. color:'#3596EB',
  146. data: this.getData(this.windCurveValues[0]),
  147. }
  148. ]
  149. }
  150. myChart.setOption(options);
  151. },
  152. //处理数据
  153. getData(datas){
  154. let data=[];
  155. //查询的测点没有数据情况
  156. if(datas && datas.length>0){
  157. datas.forEach(item=>{
  158. let result;
  159. if(item.value){
  160. result=item.value.toFixed(2);
  161. }else {
  162. result=item.value;
  163. }
  164. data.push(result);
  165. })
  166. return data;
  167. }else {
  168. return this.emptyData;
  169. }
  170. },
  171. },
  172. computed:{
  173. getTimeStanp(){
  174. // 当日0点时间
  175. var timeStamp=[];
  176. let stamp = new Date(new Date().setHours(0, 0, 0, 0)).getTime();
  177. for(let i=0;i<96;i++){
  178. timeStamp.push( dayjs(stamp).format("HH:mm"));
  179. this.emptyData.push('0');
  180. stamp = parseInt(stamp)+(15 * 60 * 1000);
  181. }
  182. timeStamp.push('24:00');
  183. return timeStamp;
  184. },
  185. },
  186. watch:{
  187. 'windCurveValues':{
  188. handler() {
  189. this.getChart();
  190. },
  191. }
  192. }
  193. }
  194. </script>
  195. <style lang="less" scoped>
  196. </style>