BasicInformationDetail.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <div class="firstdiv">
  3. <div v-for="(item, index) in warnList" :key="index">
  4. <div :class="'worning' + item.type">
  5. <Worning :worn="item.alertText"></Worning>
  6. </div>
  7. </div>
  8. <img style="float: left; margin-left: 40px; margin-top: 90px;width:50vh;height:25vh;"
  9. src="../../../assets/img/WindturbineDetailPages/变桨.png" object-fit="fill" />
  10. <div class="twodiv">
  11. <table>
  12. <tr>
  13. <th>温度信息</th>
  14. </tr>
  15. <tr v-for="itm in temperatureInfo" :key="itm">
  16. <td>{{ itm.name }}</td>
  17. <td>{{ itm.value }}</td>
  18. <td>{{ itm.unit }}</td>
  19. </tr>
  20. </table>
  21. <table v-if="pitchInfo.length > 0">
  22. <tr>
  23. <th>变桨信息</th>
  24. </tr>
  25. <tr v-for="itm in pitchInfo" :key="itm">
  26. <td>{{ itm.name }}</td>
  27. <td>{{ itm.value }}</td>
  28. <td>{{ itm.unit }}</td>
  29. </tr>
  30. </table>
  31. </div>
  32. <div class="onediv">
  33. <table>
  34. <tr>
  35. <th>基本信息</th>
  36. </tr>
  37. <tr v-for="itm in generalInfo" :key="itm">
  38. <td>{{ itm.name }}</td>
  39. <td>{{ itm.value }}</td>
  40. <td>{{ itm.unit }}</td>
  41. </tr>
  42. </table>
  43. <table>
  44. <tr>
  45. <th>电网信息</th>
  46. </tr>
  47. <tr v-for="itm in powerGridInfo" :key="itm">
  48. <td>{{ itm.name }}</td>
  49. <td>{{ itm.value }}</td>
  50. <td>{{ itm.unit }}</td>
  51. </tr>
  52. </table>
  53. </div>
  54. <!-- <div>{{alarms[0].alertText}}</div> -->
  55. </div>
  56. </template>
  57. <script>
  58. import BackgroundData from "../../../assets/script/BackgroundData";
  59. import Worning from "./warning.vue"
  60. export default {
  61. name: "BasicInformationDetail",
  62. components: {
  63. Worning,
  64. },
  65. props: {
  66. alarms: Array,
  67. },
  68. mounted() {
  69. this.show()
  70. },
  71. data() {
  72. return {
  73. warnList: [],
  74. BasicInfo: {},
  75. temperatureInfo: new Array() /* 温度信息 */,
  76. pitchInfo: new Array() /* 变桨信息 */,
  77. generalInfo: new Array() /* 基本信息 */,
  78. powerGridInfo: new Array() /* 电网信息 */,
  79. };
  80. },
  81. methods: {
  82. show() {
  83. // axios.get(`http://${config.calcUrl}/alarm/real-time-alarm?objectId=${this.windturbine.windturbineId}&pageIndex=1&pageSize=50`)
  84. // .then(msg=>{
  85. // var vs = msg.data;
  86. // if(vs.length<=0)return;
  87. // this.alarmTime = BackgroundData.getInstance().formatDate(vs[0].lastUpdateTime);
  88. // this.alarmContent = vs[0].alertText;
  89. // this.alarms = msg.data;
  90. // console.log(this.alarms)
  91. // })
  92. },
  93. start(bi) {
  94. this.BasicInfo = bi;
  95. this.bindData();
  96. this.refreshData();
  97. this.refreshTimer = setInterval(this.refreshData, 3000);
  98. },
  99. end() {
  100. clearInterval(this.refreshTimer);
  101. },
  102. alarmd(bi) {
  103. let dataList = []
  104. let warnList = []
  105. let date1 = {
  106. type: 1,
  107. alertText :[]
  108. }
  109. let date2 = {
  110. type: 2,
  111. alertText :[]
  112. }
  113. let date3 = {
  114. type: 3,
  115. alertText :[]
  116. }
  117. let date4 = {
  118. type: 4,
  119. alertText :[]
  120. }
  121. let date5 = {
  122. type: 5,
  123. alertText :[]
  124. }
  125. bi.forEach(item => {
  126. let data = {}
  127. data.alertText = item.alertText
  128. if (item.alertText.indexOf("变桨") >= 0) {
  129. data.type = 1
  130. } else if (item.alertText.indexOf("偏航") >= 0) {
  131. data.type = 5
  132. }
  133. else if (item.alertText.indexOf("发电机") >= 0) {
  134. data.type = 3
  135. }
  136. else if (item.alertText.indexOf("齿轮箱") >= 0) {
  137. data.type = 2
  138. }
  139. else if (item.alertText.indexOf("液压") >= 0) {
  140. data.type = 4
  141. }
  142. data.type ? warnList.push(data) : ''
  143. })
  144. warnList.forEach(item =>{
  145. switch (item.type) {
  146. case 1:
  147. date1.alertText.push(item.alertText)
  148. break;
  149. case 2:
  150. date2.alertText.push(item.alertText)
  151. break;
  152. case 3:
  153. date3.alertText.push(item.alertText)
  154. break;
  155. case 4:
  156. date4.alertText.push(item.alertText)
  157. break;
  158. case 5:
  159. date5.alertText.push(item.alertText)
  160. break;
  161. }
  162. })
  163. date1.alertText.length>0?dataList.push(date1):''
  164. date2.alertText.length>0?dataList.push(date2):''
  165. date3.alertText.length>0?dataList.push(date3):''
  166. date4.alertText.length>0?dataList.push(date4):''
  167. date5.alertText.length>0?dataList.push(date5):''
  168. this.warnList = dataList
  169. },
  170. /* 刷新数据 */
  171. refreshData() {
  172. var bg = BackgroundData.getInstance();
  173. bg.initWinturbineBaseData(this.BasicInfo, this.onMessage);
  174. },
  175. /* 获得数据 */
  176. onMessage(msg) {
  177. this.BasicInfo.BasicInfo.forEach((element) => {
  178. element.param.forEach((im) => {
  179. var val = msg[im.code];
  180. if (typeof val !== "undefined") {
  181. if (im.unit == "万度") {
  182. im.value = (val.doubleValue / 10000).toFixed(2);
  183. } else {
  184. im.value = val.doubleValue.toFixed(2);
  185. }
  186. }
  187. });
  188. });
  189. console.log(msg);
  190. },
  191. bindData() {
  192. this.BasicInfo.BasicInfo.forEach((element) => {
  193. if (element.tag == "基本信息") {
  194. this.generalInfo = element.param;
  195. } else if (element.tag == "温度信息") {
  196. this.temperatureInfo = element.param;
  197. } else if (element.tag == "电网信息") {
  198. this.powerGridInfo = element.param;
  199. } else if (element.tag == "桨叶信息") {
  200. this.pitchInfo = element.param;
  201. }
  202. });
  203. },
  204. },
  205. };
  206. </script>
  207. <style scoped>
  208. .firstdiv {
  209. height: 50vh;
  210. }
  211. .onediv {
  212. float: right;
  213. margin-right: 30px;
  214. }
  215. .twodiv {
  216. float: right;
  217. margin-right: 30px;
  218. }
  219. td:nth-child(1) {
  220. height: 25px;
  221. width: 130px;
  222. text-align: right;
  223. }
  224. td:nth-child(2) {
  225. width: 78px;
  226. text-align: right;
  227. color: rgb(5, 176, 71);
  228. }
  229. td:nth-child(3) {
  230. text-align: center;
  231. width: 30px;
  232. }
  233. tr:nth-child(1) {
  234. font-size: 20px;
  235. width: 90px;
  236. text-align: right;
  237. }
  238. th {
  239. height: 40px;
  240. }
  241. table {
  242. margin-top: 30px;
  243. }
  244. .worning1{
  245. position: absolute;
  246. top: 143px;
  247. left: 119px;
  248. z-index: 999;
  249. }
  250. .worning2{
  251. position: absolute;
  252. top: 210px;
  253. left: 282px;
  254. z-index: 99;
  255. }
  256. .worning3{
  257. position: absolute;
  258. top: 219px;
  259. left: 348px;
  260. z-index: 0;
  261. }
  262. .worning4{
  263. position: absolute;
  264. top: 273px;
  265. left: 296px;
  266. z-index: 0;
  267. }
  268. .worning5{
  269. position: absolute;
  270. top: 287px;
  271. left: 252px;
  272. z-index: 0;
  273. }
  274. </style>