StatusBar.vue 9.3 KB

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