StatusBar.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /* 状态栏 */
  2. <template>
  3. <div class="status-bar" onselectstart="return false">
  4. <el-row>
  5. <el-col :span="18" style="margin-top: 5px">
  6. <span style="color: white; margin-left: 20px">系统时间:</span>
  7. <span style="color: white">{{ currentTime }}</span>
  8. </el-col>
  9. <el-col :span="6" style="margin-top: 5px">
  10. <el-popover
  11. placement="top-start"
  12. :width="521"
  13. trigger="hover"
  14. class="popoverBack"
  15. :show-arrow="false"
  16. >
  17. <template #reference>
  18. <div class="status-list">
  19. <img
  20. class="status-img"
  21. src="../assets/img/statusbar/hidden_danger.png"
  22. />
  23. <span class="status-label hidden-danger">隐患</span>
  24. <span>{{ hiddenDangerNum }}</span>
  25. </div>
  26. </template>
  27. <el-scrollbar>
  28. <el-table
  29. :data="hiddenDangerData"
  30. border
  31. border-color="rgb(36,36,36)"
  32. max-height="650px"
  33. :header-cell-style="{
  34. background: 'Black',
  35. color: 'rgb(220,220,220)',
  36. border:'0px'
  37. }"
  38. :cell-style="{ background: 'Black', color: 'rgb(220,220,220)',}"
  39. >
  40. <el-table-column
  41. width="160"
  42. property="lastUpdateTime"
  43. label="时间"
  44. align="center"
  45. ></el-table-column>
  46. <el-table-column
  47. width="110"
  48. property="windturbineId"
  49. label="设备"
  50. align="center"
  51. ></el-table-column>
  52. <el-table-column
  53. width="250"
  54. property="alertText"
  55. label="故障信息"
  56. align="center"
  57. ></el-table-column>
  58. </el-table>
  59. </el-scrollbar>
  60. </el-popover>
  61. <el-popover placement="top-start"
  62. :width="521"
  63. trigger="hover"
  64. class="popoverBack"
  65. :show-arrow="false">
  66. <template #reference>
  67. <div class="status-list">
  68. <img
  69. class="status-img"
  70. src="../assets/img/statusbar/defect.png"
  71. />
  72. <span class="status-label defect">缺陷</span>
  73. <span>{{ defectNum }}</span>
  74. </div>
  75. </template>
  76. <el-table
  77. :data="defectData"
  78. border
  79. border-color="rgb(36,36,36)"
  80. max-height="650px"
  81. :header-cell-style="{
  82. background: 'Black',
  83. color: 'rgb(220,220,220)',
  84. border:'0px'
  85. }"
  86. :cell-style="{ background: 'Black', color: 'rgb(220,220,220)',}">
  87. <el-table-column
  88. width="160"
  89. property="lastUpdateTime"
  90. label="时间"
  91. align="center"
  92. ></el-table-column>
  93. <el-table-column
  94. width="110"
  95. property="windturbineId"
  96. label="设备"
  97. align="center"
  98. ></el-table-column>
  99. <el-table-column
  100. width="250"
  101. property="alertText"
  102. label="故障信息"
  103. align="center"
  104. ></el-table-column>
  105. </el-table>
  106. </el-popover>
  107. <el-popover
  108. placement="top-start"
  109. :width="521"
  110. trigger="hover"
  111. class="popoverBack"
  112. :show-arrow="false">
  113. <template #reference>
  114. <div class="status-list">
  115. <img
  116. class="status-img"
  117. src="../assets/img/statusbar/malfunction.png"
  118. />
  119. <span class="status-label malfunction">故障</span>
  120. <span>{{ malfunctionNum }}</span>
  121. </div>
  122. </template>
  123. <el-table
  124. :data="malfunctionData"
  125. border
  126. border-color="rgb(36,36,36)"
  127. max-height="650px"
  128. :header-cell-style="{
  129. background: 'Black',
  130. color: 'rgb(220,220,220)',
  131. border:'0px'
  132. }"
  133. :cell-style="{ background: 'Black', color: 'rgb(220,220,220)',}">
  134. <el-table-column
  135. width="160"
  136. property="lastUpdateTime"
  137. label="时间"
  138. align="center"
  139. ></el-table-column>
  140. <el-table-column
  141. width="110"
  142. property="stationName"
  143. label="设备"
  144. align="center"
  145. ></el-table-column>
  146. <el-table-column
  147. width="250"
  148. property="alertText"
  149. label="故障信息"
  150. align="center"
  151. ></el-table-column>
  152. </el-table>
  153. </el-popover>
  154. <el-popover
  155. placement="top-start"
  156. :width="521"
  157. trigger="hover"
  158. class="popoverBack"
  159. :show-arrow="false">
  160. <template #reference>
  161. <div class="status-list">
  162. <img
  163. class="status-img"
  164. src="../assets/img/statusbar/accident.png"
  165. />
  166. <span class="status-label accident">事故</span>
  167. <span>{{ accidentNum }}</span>
  168. </div>
  169. </template>
  170. <el-table
  171. :data="accidentData"
  172. border
  173. border-color="rgb(36,36,36)"
  174. max-height="650px"
  175. :header-cell-style="{
  176. background: 'Black',
  177. color: 'rgb(220,220,220)',
  178. border:'0px'
  179. }"
  180. :cell-style="{ background: 'Black', color: 'rgb(220,220,220)',}">
  181. <el-table-column
  182. width="160"
  183. property="lastUpdateTime"
  184. label="时间"
  185. align="center"
  186. ></el-table-column>
  187. <el-table-column
  188. width="110"
  189. property="stationName"
  190. label="设备"
  191. align="center"
  192. ></el-table-column>
  193. <el-table-column
  194. width="250"
  195. property="alertText"
  196. label="故障信息"
  197. align="center"
  198. ></el-table-column>
  199. </el-table>
  200. </el-popover>
  201. </el-col>
  202. </el-row>
  203. </div>
  204. </template>
  205. <script>
  206. import BackgroundData from '../assets/script/BackgroundData'
  207. export default {
  208. data() {
  209. return {
  210. hiddenDangerNum: 0,
  211. defectNum: 0,
  212. malfunctionNum: 0,
  213. accidentNum: 0,
  214. statusTimer: "",
  215. currentTime: "",
  216. hiddenDangerData:new Array(),
  217. defectData:new Array(),
  218. malfunctionData:new Array(),
  219. accidentData:new Array(),
  220. };
  221. },
  222. mounted() {
  223. let that = this;
  224. this.statusTimer = setInterval(function () {
  225. that.currentTime =
  226. new Date().getFullYear() +
  227. "-" +
  228. that.appendZero(new Date().getMonth() + 1) +
  229. "-" +
  230. that.appendZero(new Date().getDate()) +
  231. " " +
  232. that.appendZero(new Date().getHours()) +
  233. ":" +
  234. that.appendZero(new Date().getMinutes()) +
  235. ": " +
  236. that.appendZero(new Date().getSeconds());
  237. }, 1000);
  238. },
  239. beforeDestory() {
  240. clearInterval(this.statusTimer);
  241. this.statusTimer = null;
  242. },
  243. created() {
  244. this.refreshTimer = setInterval(this.refreshData, 2000);
  245. },
  246. methods: {
  247. appendZero(obj) {
  248. if (obj < 10) {
  249. return "0" + obj;
  250. } else {
  251. return obj;
  252. }
  253. },
  254. refreshData(){
  255. var bd = BackgroundData.getInstance();
  256. this.hiddenDangerNum = bd.HiddenProblems.length;
  257. this.defectNum = bd.Defects.length;
  258. this.malfunctionNum = bd.Failure.length;
  259. this.accidentNum = bd.Accidents.length;
  260. this.hiddenDangerData = bd.HiddenProblems;
  261. this.defectData = bd.Defects;
  262. this.malfunctionData = bd.Failure;
  263. this.accidentData = bd.Accidents;
  264. if(this.accidentData.length<=0){
  265. this.accidentData=[{lastUpdateTime:"-",stationName:"-",alertText:"-"}];
  266. }
  267. }
  268. },
  269. };
  270. </script>
  271. <style scoped>
  272. /deep/ .el-table__body-wrapper::-webkit-scrollbar {
  273. width: 8px;
  274. background-color: black;
  275. }
  276. /deep/ .el-table__body-wrapper::-webkit-scrollbar-thumb {
  277. background-color: #292929;
  278. border-radius: 6px;
  279. }
  280. span {
  281. font-size: 13px;
  282. }
  283. .status-bar {
  284. height: 4vh;
  285. background-color: #191919;
  286. margin-bottom: 0;
  287. margin-left: 0;
  288. margin-right: 0;
  289. }
  290. .status-list {
  291. position: relative;
  292. display: inline-block;
  293. box-sizing: border-box;
  294. color: white;
  295. }
  296. .status-label {
  297. margin-left: 10px;
  298. margin-right: 10px;
  299. }
  300. .status-img {
  301. position: relative;
  302. top: 4px;
  303. margin-left: 20px;
  304. width: 20px;
  305. }
  306. .status-label.hidden-danger {
  307. color: #e6d541;
  308. }
  309. .status-label.defect {
  310. color: #e69641;
  311. }
  312. .status-label.malfunction {
  313. color: #d541e6;
  314. }
  315. .status-label.accident {
  316. color: #af3e3d;
  317. }
  318. </style>