BaseChartInfo.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <a-modal
  3. title="历史曲线"
  4. :visible="visible"
  5. :confirm-loading="confirmLoading"
  6. :footer="null"
  7. :width="1200"
  8. @cancel="handleCancel"
  9. >
  10. <div class="chart">
  11. <a-row type="flex" justify="space-between">
  12. <a-col :span="24">
  13. <a-form :form="form">
  14. <a-row type="flex" justify="end">
  15. <a-col :span="10">
  16. <a-form-item label="查询时间" :labelCol="BaseTool.Constant.labelCol" :wrapperCol="BaseTool.Constant.wrapperCol">
  17. <a-date-picker
  18. show-time
  19. :format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
  20. v-model="queryParam.createdTimeEnd" />
  21. </a-form-item>
  22. </a-col>
  23. <a-col :span="10">
  24. <a-form-item label="时间跨度" :labelCol="BaseTool.Constant.labelCol" :wrapperCol="BaseTool.Constant.wrapperCol">
  25. <a-select v-model="queryParam.searchType" style="width: 120px">
  26. <a-select-option value="1">
  27. 1小时
  28. </a-select-option>
  29. <a-select-option value="2">
  30. 2小时
  31. </a-select-option>
  32. <a-select-option value="3">
  33. 3小时
  34. </a-select-option>
  35. </a-select>
  36. </a-form-item>
  37. </a-col>
  38. <a-col :span="3">
  39. <a-form-item >
  40. <a-button type="primary" @click="getInfo">查询</a-button>
  41. </a-form-item>
  42. </a-col>
  43. </a-row>
  44. </a-form>
  45. </a-col>
  46. </a-row>
  47. <div>
  48. <div id="chart"></div>
  49. </div>
  50. </div>
  51. </a-modal>
  52. </template>
  53. <script>
  54. import { Chart } from '@antv/g2'
  55. import { queryRemoteOpcLogHisory } from '@/api/remote/opc-log'
  56. export default {
  57. data () {
  58. return {
  59. form: this.$form.createForm(this),
  60. visible: false,
  61. confirmLoading: false,
  62. queryParam: {
  63. searchType: '1',
  64. createdTimeEnd: this.BaseTool.Date.formatter(new Date(), this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  65. },
  66. remoteOpc: null,
  67. positionNum: null,
  68. chart1: null,
  69. dataList: [
  70. { time: '2009/7/20 0:00', value: 32, type: 'aa' },
  71. { time: '2009/7/20 1:00', value: 8, type: 'bb' },
  72. { time: '2009/7/20 2:00', value: 28, type: 'aa' },
  73. { time: '2009/7/20 2:00', value: 6, type: 'bb' },
  74. { time: '2009/7/20 4:00', value: 5, type: 'aa' },
  75. { time: '2009/7/20 4:00', value: 13, type: 'bb' },
  76. { time: '2009/7/20 6:00', value: 12, type: 'aa' },
  77. { time: '2009/7/20 6:00', value: 31, type: 'bb' },
  78. { time: '2009/7/20 8:00', value: 1, type: 'aa' },
  79. { time: '2009/7/20 8:00', value: 16, type: 'bb' }
  80. ]
  81. }
  82. },
  83. created () {
  84. },
  85. mounted () {
  86. },
  87. methods: {
  88. base (remoteOpc) {
  89. this.visible = true
  90. this.remoteOpc = remoteOpc
  91. this.queryParam.createdTimeEnd = this.BaseTool.Date.formatter(new Date(), this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  92. console.log(this.queryParam.createdTimeEnd)
  93. this.getInfo()
  94. /* this.$nextTick(() => {
  95. this.createChart(this.dataList)
  96. }) */
  97. },
  98. getInfo () {
  99. this.queryParam.createdTimeEnd = this.queryParam.createdTimeEnd ? this.BaseTool.Date.formatter(this.queryParam.createdTimeEnd, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN) : null
  100. this.queryParam.positionNum = this.remoteOpc.positionNum
  101. if (this.queryParam.createdTimeEnd == null) {
  102. this.$message.error('请选择查询时间')
  103. return
  104. }
  105. if (this.queryParam.searchType == null) {
  106. this.$message.error('请选择时间跨度')
  107. return
  108. }
  109. queryRemoteOpcLogHisory(this.queryParam)
  110. .then((res) => {
  111. if (res.data == null || res.data.length === 0) {
  112. this.$message.error('无数据')
  113. return
  114. }
  115. const data = []
  116. res.data.filter(item => data.push({ time: item.createdTime, value: item.result, type: this.remoteOpc.sbName }))
  117. this.dataList = data
  118. if (this.dataList != null && this.dataList.length > 0) {
  119. this.createChart(this.dataList)
  120. }
  121. })
  122. },
  123. createChart (data) {
  124. this.chart1 && this.chart1.destroy()
  125. this.chart1 = new Chart({
  126. container: 'chart',
  127. autoFit: true,
  128. height: 440,
  129. padding: [16, 50, 64]
  130. })
  131. this.chart1.data(data)
  132. this.chart1.scale({
  133. time: {
  134. type: 'time',
  135. tickCount: 8,
  136. mask: 'M/DD HH:mm'
  137. },
  138. value: {
  139. min: 0
  140. }
  141. })
  142. this.chart1.legend({
  143. position: 'top',
  144. offsetY: 4
  145. })
  146. this.chart1.tooltip({
  147. showCrosshairs: true,
  148. shared: true
  149. })
  150. this.chart1.option('slider', {
  151. start: 0.001,
  152. end: 1,
  153. trendCfg: {
  154. isArea: false
  155. }
  156. })
  157. this.chart1
  158. .line()
  159. .position('time*value')
  160. .color('type')
  161. this.chart1.interaction('element-visible-filter')
  162. this.chart1
  163. .point()
  164. .color('type')
  165. .position('time*value')
  166. this.chart1.render()
  167. },
  168. handleCancel (e) {
  169. console.log('Clicked cancel button')
  170. this.chart1 && this.chart1.destroy()
  171. this.queryParam = {
  172. searchType: '1'
  173. }
  174. this.visible = false
  175. }
  176. }
  177. }
  178. </script>
  179. <style>
  180. </style>