声脉桥梁云监控平台

history.vue 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <div class="dashboard-editor-container">
  3. <el-card class="box-card block-group">
  4. <div slot="header" class="block-title">
  5. <span>{{alarmTit}}</span>
  6. </div>
  7. <div class="load-box" v-loading="loadprogress">
  8. <el-row class="line-chart-box">
  9. <el-col :xs="24" :sm="24" :lg="24">
  10. <lineChart :chartData="echartsObj"></lineChart>
  11. </el-col>
  12. </el-row>
  13. </div>
  14. </el-card>
  15. </div>
  16. </template>
  17. <script>
  18. import { parseTime, turnTime } from '@/utils'
  19. import lineChart from './lineChart/LineChart'
  20. import request from '@/utils/request'
  21. export default {
  22. data() {
  23. return {
  24. historyM: true,
  25. alarmTit: '',
  26. alarmList: [],
  27. loadprogress: false,
  28. array: [],
  29. truObject: {},
  30. echartsObj: {
  31. legend: [],
  32. xAxis: [],
  33. yAxis: [],
  34. series: []
  35. }
  36. }
  37. },
  38. components: {
  39. lineChart
  40. },
  41. created() {
  42. this.truObject = JSON.parse(this.$route.query.id)
  43. Object.keys(this.truObject).forEach(res => {
  44. this.array.push(res)
  45. })
  46. this.alarmTit = this.$route.query.title
  47. this.getDustrurDetail()
  48. },
  49. methods: {
  50. seriesFun(name, stringType, idx, ydata) {
  51. return {
  52. name: name,
  53. type: stringType,
  54. yAxisIndex: idx,
  55. data: ydata
  56. }
  57. },
  58. yAxisFun(name, min, max, position, color, unit) {
  59. return {
  60. type: 'value',
  61. name: name,
  62. min: min,
  63. max: max,
  64. position: position,
  65. axisLine: {
  66. lineStyle: {
  67. color: color
  68. }
  69. },
  70. axisLabel: {
  71. formatter: '{value} ' + unit
  72. }
  73. }
  74. },
  75. getDustrurDetail() {
  76. this.loadprogress = true
  77. request({
  78. url: 'ajax/envData/history',
  79. method: 'get',
  80. params: {
  81. bt: this.getDate(),
  82. transducers: this.array
  83. }
  84. }).then(res => {
  85. if (res.success) {
  86. const $data = res.data
  87. let flag = false
  88. const echObj = {
  89. color: [],
  90. legend: [],
  91. xAxis: [],
  92. yAxis: [],
  93. series: []
  94. }
  95. Object.keys($data).forEach(key => {
  96. const idx = echObj.legend.length
  97. switch (this.truObject[key]) {
  98. case '01':
  99. echObj.color.push('#5793f3')
  100. echObj.yAxis.push(this.yAxisFun('温度', -20, 100, 'left', '#5793f3', '℃'))
  101. echObj.series.push(this.seriesFun('温度', 'line', idx, []))
  102. echObj.legend.push('温度')
  103. break
  104. case '02':
  105. const yAxisItem = this.yAxisFun('湿度', 0, 100, 'left', '#d14a61', '%')
  106. if (idx === 1) {
  107. yAxisItem.offset = 60
  108. }
  109. echObj.color.push('#d14a61')
  110. echObj.yAxis.push(yAxisItem)
  111. echObj.series.push(this.seriesFun('湿度', 'line', idx, []))
  112. echObj.legend.push('湿度')
  113. break
  114. case '03':
  115. echObj.color.push('#675bba')
  116. echObj.yAxis.push(this.yAxisFun('压力', 0, 10, 'right', '#675bba', 'kPa'))
  117. echObj.series.push(this.seriesFun('压力', 'bar', idx, []))
  118. echObj.legend.push('压力')
  119. break
  120. case '04':
  121. const yItem = this.yAxisFun('风量', 0, 100, 'right', '#67C23A', 'm³/h')
  122. if (echObj.color.indexOf('#675bba') >= 0) {
  123. yItem.offset = 80
  124. }
  125. echObj.color.push('#67C23A')
  126. echObj.yAxis.push(yItem)
  127. echObj.series.push(this.seriesFun('风量', 'bar', idx, []))
  128. echObj.legend.push('风量')
  129. break
  130. }
  131. $data[key].forEach((item, index) => {
  132. if (index % 2 === 0) {
  133. if (!flag) {
  134. const startTime = parseTime(item.createTime, true, true).substr(0, 16)
  135. echObj.xAxis.unshift(startTime)
  136. }
  137. echObj.series[idx].data.unshift(item.itemValue)
  138. } else {
  139. if (!flag) {
  140. echObj.xAxis.unshift('')
  141. }
  142. echObj.series[idx].data.unshift(item.itemValue)
  143. }
  144. })
  145. flag = true
  146. })
  147. this.echartsObj = echObj
  148. this.loadprogress = false
  149. }
  150. })
  151. },
  152. getDate() {
  153. const currentTime = new Date(new Date().getTime() - 6 * 60 * 60 * 1000)
  154. return `${turnTime(currentTime, 'time').substr(0, 12)}00`
  155. }
  156. }
  157. }
  158. </script>
  159. <style rel="stylesheet/scss" lang="scss" scoped>
  160. .dashboard-editor-container .block-group .block-title {
  161. justify-content: flex-start;
  162. span {
  163. margin-right: 15px;
  164. }
  165. }
  166. </style>