StatusBar.vue 9.0 KB

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