warningRecords.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <el-dialog
  3. width="60%"
  4. @open="opened()"
  5. @closed="closed()"
  6. :show-close="false"
  7. class="my-info-dialog"
  8. >
  9. <template #title>
  10. <div class="showTitles">
  11. <div class="titles">报警记录</div>
  12. </div>
  13. </template>
  14. <div class="recordBody">
  15. <div class="operate">
  16. <el-date-picker
  17. class="picker"
  18. @change="changes"
  19. v-model="timeValue"
  20. type="datetimerange"
  21. range-separator="至"
  22. start-placeholder="开始日期"
  23. end-placeholder="结束日期"
  24. >
  25. </el-date-picker>
  26. <div class="showTitle">场站:</div>
  27. <el-select
  28. class="selects"
  29. clearable
  30. v-model="selectValue"
  31. placeholder="请选择"
  32. >
  33. <el-option
  34. v-for="item in stationList"
  35. :key="item.id"
  36. :label="item.stationName"
  37. :value="item.id"
  38. >
  39. </el-option>
  40. </el-select>
  41. <div class="showTitle">搜索:</div>
  42. <el-input class="inputs" placeholder="请输入" v-model="filterText"></el-input>
  43. <div class="buttons" @click="search()">查询</div>
  44. </div>
  45. <div class="warningList">
  46. <el-table
  47. :data="recordData"
  48. class="table"
  49. height="55vh"
  50. :header-cell-style="{
  51. background: '#000000',
  52. color: 'rgb(220,220,220)',
  53. padding: '4px',
  54. fontSize: '14px',
  55. 'border-bottom': 'solid 1px black',
  56. }"
  57. :cell-style="{
  58. height: '45px',
  59. background: 'rgb(30,30,30)',
  60. color: 'rgb(220,220,220)',
  61. padding: '3px',
  62. fontSize: '12px',
  63. 'border-bottom': '1px solid #000000',
  64. }"
  65. @row-dblclick="itemDblclick"
  66. >
  67. <el-table-column
  68. prop="faultTime"
  69. align="center"
  70. label="故障时间"
  71. width="280"
  72. >
  73. </el-table-column>
  74. <el-table-column
  75. prop="categoryName"
  76. align="center"
  77. label="故障类型"
  78. width="120"
  79. >
  80. </el-table-column>
  81. <el-table-column
  82. prop="showName"
  83. align="center"
  84. label="名称"
  85. width="150"
  86. >
  87. </el-table-column>
  88. <el-table-column width="80" align="end">
  89. <template #default="scope">
  90. <span>
  91. <img
  92. class="titleImg"
  93. v-if="scope.row.category1 === 'SYZ'"
  94. src="../../assets/img/controlcenter/warning.png"
  95. alt=""
  96. />
  97. </span>
  98. </template>
  99. </el-table-column>
  100. <el-table-column
  101. prop="alertText"
  102. align="center"
  103. label="描述"
  104. >
  105. </el-table-column>
  106. </el-table>
  107. </div>
  108. <div class="paginations">
  109. <el-pagination
  110. background
  111. layout="prev, pager, next"
  112. :total="total"
  113. @current-change="handleCurrentChange"
  114. :hide-on-single-page="true"
  115. :page-size="currentPage"
  116. >
  117. </el-pagination>
  118. </div>
  119. </div>
  120. </el-dialog>
  121. </template>
  122. <script>
  123. import dayjs from "dayjs";
  124. import api from "api/index";
  125. export default {
  126. data() {
  127. return {
  128. timeValue: [],
  129. chooseTime: [],
  130. recordData: [],
  131. pageIndex: 1,
  132. currentPage: 10,
  133. total: 10,
  134. selectValue: "",
  135. filterText: "",
  136. stationList: [],
  137. };
  138. },
  139. updated() {},
  140. methods: {
  141. faultHistory() {
  142. api
  143. .getFaultHistory({
  144. startTime: dayjs(this.timeValue[0]).format("YYYY-MM-DD HH:mm:ss"),
  145. endTime: dayjs(this.timeValue[1]).format("YYYY-MM-DD HH:mm:ss"),
  146. stationid: this.selectValue,
  147. keyword: this.filterText,
  148. pageSize: this.currentPage,
  149. pageIndex: this.pageIndex,
  150. })
  151. .then((res) => {
  152. res.data.records.forEach(item =>{
  153. if(item.category1 === "FJ"){
  154. item.showName = item.windturbineName
  155. }else{
  156. item.showName = item.stationName
  157. }
  158. })
  159. this.recordData = res.data.records;
  160. this.total = res.data.total
  161. });
  162. },
  163. changes() {
  164. let timeValue = [];
  165. this.timeValue?.forEach((item) => {
  166. timeValue.push(dayjs(item).valueOf());
  167. });
  168. this.chooseTime = timeValue;
  169. },
  170. search() {
  171. this.faultHistory();
  172. },
  173. opened() {
  174. if (this.timeValue.length === 0) {
  175. let date = new Date();
  176. this.timeValue[0] = date.getTime() - 86400000;
  177. this.timeValue[1] = date.getTime();
  178. }
  179. this.chooseTime = this.timeValue;
  180. this.faultHistory();
  181. this.stationList = this.$store.state.stationList
  182. console.log(this.stationList);
  183. },
  184. closed() {
  185. this.chooseTime = [];
  186. this.pageIndex = 1;
  187. },
  188. handleCurrentChange(val) {
  189. this.pageIndex = val;
  190. this.faultHistory();
  191. },
  192. },
  193. };
  194. </script>
  195. <style scoped>
  196. .recordBody {
  197. display: flex;
  198. flex-direction: column;
  199. align-items: baseline;
  200. background-color: black;
  201. width: 100%;
  202. margin-top: -30px;
  203. padding-top: 10px;
  204. }
  205. .warningList {
  206. width: 100%;
  207. height: 60vh;
  208. }
  209. .paginations {
  210. display: flex;
  211. flex-direction: row-reverse;
  212. background-color: #000000;
  213. margin-top: -60px;
  214. z-index: 2;
  215. width: 100%;
  216. padding-bottom: 30px;
  217. }
  218. .selects {
  219. border: none;
  220. width: 174px !important;
  221. }
  222. .inputs {
  223. border: none;
  224. width: 174px !important;
  225. margin-right: 20px;
  226. }
  227. .showTitle{
  228. margin-left: 20px;
  229. margin-right: 10px;
  230. color: #ffffff;
  231. font-size: 16px;
  232. }
  233. .titleImg {
  234. width: 20px;
  235. height: 20px;
  236. margin-left: 22px;
  237. display: flex;
  238. }
  239. .table {
  240. background-color: #000000 !important;
  241. }
  242. .el-table td,
  243. .el-table th.is-leaf {
  244. border-bottom: 1px solid #000000 !important;
  245. }
  246. .el-table__header {
  247. width: 100% !important;
  248. }
  249. .el-table__body-wrapper {
  250. background-color: #000000 !important;
  251. }
  252. .el-table::before {
  253. width: 0;
  254. }
  255. </style>