Brak opisu

index.vue 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <div class="dashboard-editor-container">
  3. <el-card class="box-card block-group">
  4. <div slot="header" class="block-title">
  5. <el-date-picker
  6. style="width: 200px;margin-right:15px"
  7. v-model="valueDate"
  8. :editable="false"
  9. type="date"
  10. value-format="yyyyMMdd"
  11. :picker-options="pickerOptions0"
  12. @change="changeDate">
  13. </el-date-picker>
  14. <el-select v-model="TimeVal">
  15. <el-option
  16. v-for="item in optionsTime"
  17. :key="item.value"
  18. :label="item.label"
  19. :value="item.value"
  20. :disabled="item.disb"
  21. @change="changeTimeRange">
  22. </el-option>
  23. </el-select>
  24. <el-button type="primary" @click="getMonitorByDay" :disabled="progressShow">查询</el-button>
  25. </div>
  26. <el-row class="line-chart-box">
  27. <div class="progress-box" v-if="progressShow">
  28. <span>正在加载 {{proBar}}%</span>
  29. <el-progress :text-inside="true" :stroke-width="18" :percentage="proBar"></el-progress>
  30. </div>
  31. <el-col :xs="24" :sm="24" :lg="24" v-for="item in alarmShowList" :key="item.index" v-if="alarmList.length">
  32. <lineChart :chartData="item" :historyM="historyM"></lineChart>
  33. </el-col>
  34. </el-row>
  35. <DefaultPage v-if="!alarmList.length && !progressShow"></DefaultPage>
  36. <div class="pagination-container">
  37. <el-pagination
  38. background
  39. @current-change="handleCurrentChange"
  40. :current-page="pageNo"
  41. :page-size="pageSize"
  42. layout="prev, pager, next, jumper"
  43. :total="alarmList.length">
  44. </el-pagination>
  45. </div>
  46. </el-card>
  47. </div>
  48. </template>
  49. <script>
  50. import '@/styles/roleuser.scss'
  51. import Cookies from 'js-cookie'
  52. import queryInfo from '@/utils/queryInfo'
  53. import { getMonitorByDay } from '@/api/bridgeInfo'
  54. import { parseTime } from '@/utils'
  55. import lineChart from '../lineChart/LineChart'
  56. import DefaultPage from '@/components/DefaultPage'
  57. import NProgress from 'nprogress'
  58. export default {
  59. data() {
  60. return {
  61. historyM: true,
  62. bridgeId: '',
  63. pickerOptions0: {
  64. disabledDate(time) {
  65. return time.getTime() > Date.now()
  66. }
  67. },
  68. valueDate: this.formatTime(Date.now()).substring(0, 8),
  69. TimeVal: '000000',
  70. optionsTime: [],
  71. serverSeqArr: [],
  72. alarmList: [],
  73. monitorCache: [],
  74. pageSize: 2,
  75. pageNo: 1,
  76. progressShow: false,
  77. proBar: 0
  78. }
  79. },
  80. components: {
  81. lineChart,
  82. DefaultPage
  83. },
  84. computed: {
  85. alarmShowList() {
  86. return this.alarmList.slice((this.pageNo - 1) * this.pageSize, this.pageNo * this.pageSize)
  87. }
  88. },
  89. created() {
  90. var that = this
  91. that.bridgeId = Cookies.get('bridgeId')
  92. that.optionsCreat()
  93. queryInfo.qaiCb(function() {
  94. if (that.bridgeId) {
  95. that.serverSeqArr = queryInfo.queryServers(that.bridgeId, true)
  96. if (that.serverSeqArr.length) {
  97. that.getMonitorByDay()
  98. }
  99. }
  100. })
  101. },
  102. methods: {
  103. optionsCreat() {
  104. var that = this
  105. that.optionsTime = []
  106. const nowHour = new Date().getHours()
  107. for (let i = 0; i < 24; i++) {
  108. var num = (i < 10 ? ('0' + i) : i)
  109. var numpre = ((i - 1) < 10 ? ('0' + (i - 1)) : (i - 1))
  110. var oPt = {
  111. value: `${num}0000`,
  112. label: `${num}:00:00 - ${num}:59:59`,
  113. disb: false
  114. }
  115. if (nowHour === i) {
  116. that.TimeVal = `${numpre}0000`
  117. }
  118. if (nowHour <= i && that.valueDate === that.formatTime(Date.now()).substring(0, 8)) {
  119. oPt.disb = true
  120. }
  121. that.optionsTime.push(oPt)
  122. }
  123. },
  124. formatTime(time) {
  125. var d = new Date()
  126. d.setTime(time)
  127. d = JSON.stringify(d).replace(/[^\d]/g, '')
  128. return d
  129. },
  130. changeProgress() {
  131. var that = this
  132. var clearInt = setInterval(function() {
  133. that.proBar = that.proBar + parseInt((Math.random() * 10), 10)
  134. if (that.proBar >= 96) {
  135. that.proBar = 96
  136. clearInterval(clearInt)
  137. }
  138. }, 1500 * Math.random())
  139. },
  140. getMonitorByDay() {
  141. var that = this
  142. that.progressShow = true
  143. NProgress.start()
  144. that.proBar = 0
  145. that.alarmList = []
  146. that.changeProgress()
  147. var sDate = that.valueDate + that.TimeVal
  148. var sDateForm = (new Date(parseTime(sDate, true, true))).getTime()
  149. var eDate = that.formatTime(sDateForm + 8 * 60 * 60 * 1000 + 59 * 60 * 1000 + 59 * 1000).substring(0, 14)
  150. var arr = that.serverSeqArr
  151. var flag = false
  152. if (that.valueDate === that.formatTime(Date.now()).substring(0, 8)) {
  153. flag = true
  154. }
  155. if (arr === null || arr.length === 0) {
  156. that.progressShow = false
  157. return
  158. }
  159. getMonitorByDay({ seq: arr, begin: sDate, end: eDate }, flag).then(res => {
  160. NProgress.inc()
  161. if (res.success && res.data) {
  162. that.proBar = 100
  163. var monitorList = []
  164. for (let i = 0; i < res.data.length; i++) {
  165. var str = res.data[i].cid
  166. var monitorData = null
  167. for (let j = 0; j < monitorList.length; ++j) {
  168. if (str === monitorList[j].tit) {
  169. monitorData = monitorList[j]
  170. break
  171. }
  172. }
  173. if (!monitorData) {
  174. monitorData = {
  175. tit: '',
  176. xData: [],
  177. seData: []
  178. }
  179. monitorList.push(monitorData)
  180. monitorData.tit = str
  181. }
  182. monitorData.xData.push(parseTime(res.data[i].ctime, true, true).substring(11, 19))
  183. monitorData.xData.push(parseTime(res.data[i].ctime, true, true).substring(11, 19))
  184. monitorData.seData.push(res.data[i].hvalue)
  185. monitorData.seData.push(res.data[i].lvalue)
  186. }
  187. if (that.proBar === 100) {
  188. that.alarmList = monitorList
  189. setTimeout(function() {
  190. that.progressShow = false
  191. }, 1)
  192. }
  193. }
  194. })
  195. },
  196. changeDate(val) {
  197. this.valueDate = val
  198. this.optionsCreat()
  199. },
  200. changeTimeRange(val) {
  201. this.TimeVal = val
  202. },
  203. handleCurrentChange(val) {
  204. this.pageNo = val
  205. }
  206. }
  207. }
  208. </script>
  209. <style rel="stylesheet/scss" lang="scss" scoped>
  210. .dashboard-editor-container .block-group .block-title{
  211. justify-content: flex-start;
  212. .el-button{
  213. padding: 12px 20px;
  214. margin-left: 15px;
  215. }
  216. }
  217. .progress-box{
  218. width: 400px;
  219. padding: 80px;
  220. margin: auto;
  221. text-align: center;
  222. line-height: 40px;
  223. color:#999;
  224. font-size:13px;
  225. }
  226. </style>