historywaring.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <template>
  2. <el-card>
  3. <el-space wrap>
  4. <div class="search-input">
  5. <span class="lable">类型:</span>
  6. <el-select
  7. v-model="state.typeVal"
  8. clearable
  9. size="mini"
  10. style="width: 100px"
  11. placeholder="全部"
  12. popper-class="select"
  13. @change="typechange"
  14. >
  15. <el-option
  16. v-for="item in state.typeList"
  17. :key="item.value"
  18. :value="item.value"
  19. :label="item.label"
  20. >
  21. </el-option>
  22. </el-select>
  23. </div>
  24. <div class="search-input" v-if="!isStation">
  25. <span class="lable">{{
  26. state.isshowwindturbineName ? "场站:" : "升压站:"
  27. }}</span>
  28. <el-select
  29. v-model="state.stationId"
  30. clearable
  31. size="mini"
  32. placeholder="全部"
  33. popper-class="select"
  34. @change="getWindturbineList"
  35. >
  36. <el-option
  37. v-for="item in stationList"
  38. :key="item.id"
  39. :value="item.id"
  40. :label="item.name"
  41. ></el-option>
  42. </el-select>
  43. </div>
  44. <div class="search-input" v-if="state.isshowwindturbineName">
  45. <span class="lable">机组:</span>
  46. <el-select
  47. v-model="state.windturbineId"
  48. clearable
  49. size="mini"
  50. placeholder="全部"
  51. popper-class="select"
  52. >
  53. <el-option
  54. v-for="item in state.windturbineList"
  55. :key="item.id"
  56. :value="item.id"
  57. :label="item.name"
  58. >
  59. </el-option>
  60. </el-select>
  61. </div>
  62. <div class="search-input" v-if="state.isshowwindturbineName">
  63. <span class="lable">型号:</span>
  64. <el-select
  65. v-model="state.modelId"
  66. clearable
  67. size="mini"
  68. placeholder="全部"
  69. popper-class="select"
  70. >
  71. <el-option
  72. v-for="item in modelList"
  73. :key="item.id"
  74. :value="item.id"
  75. :label="item.name"
  76. >
  77. </el-option>
  78. </el-select>
  79. </div>
  80. <div class="search-input" v-if="state.isshowwindturbineName">
  81. <span class="lable">部件:</span>
  82. <el-select
  83. v-model="state.components"
  84. clearable
  85. size="mini"
  86. placeholder="全部"
  87. popper-class="select"
  88. >
  89. <el-option
  90. v-for="item in componentList"
  91. :key="item.id"
  92. :value="item.id"
  93. :label="item.name"
  94. >
  95. </el-option>
  96. </el-select>
  97. </div>
  98. <div class="search-input">
  99. <span class="lable">描述:</span>
  100. <el-input
  101. v-model="state.description"
  102. style="width: 100px"
  103. size="mini"
  104. ></el-input>
  105. </div>
  106. <div class="search-input">
  107. <span class="lable">日期:</span>
  108. <el-date-picker
  109. v-model="state.dateTime"
  110. size="mini"
  111. type="datetimerange"
  112. range-separator="-"
  113. format="YYYY-MM-DD HH:mm:ss"
  114. value-format="YYYY-MM-DD HH:mm:ss"
  115. start-placeholder="开始"
  116. end-placeholder="结束"
  117. >
  118. </el-date-picker>
  119. </div>
  120. <el-button type="primary" size="mini" @click="getAlarmHistoryt"
  121. >查询</el-button
  122. >
  123. <el-button
  124. size="mini"
  125. type="primary"
  126. @click="export2Excel"
  127. :disabled="state.tableData?.length == 0 ? true : false"
  128. >
  129. 导出</el-button
  130. >
  131. </el-space>
  132. </el-card>
  133. <div class="table-wrapper">
  134. <el-table
  135. :data="state.tableData"
  136. height="calc(100% - 35px - 10px)"
  137. style="width: 100%"
  138. border
  139. stripe
  140. >
  141. <el-table-column
  142. v-for="item in state.isshowwindturbineName
  143. ? state.tableHeader
  144. : state.tableHeader1"
  145. :label="item.title"
  146. :prop="item.code"
  147. :key="item.code"
  148. :width="item.width ? item.width : 0"
  149. show-overflow-tooltip
  150. header-align="center"
  151. >
  152. <template #default="scope">
  153. <span v-if="item.code == 'rank'">
  154. {{ tableFilter(scope.row.rank) }}
  155. </span>
  156. <span v-else-if="item.code == 'alarmtype'">
  157. {{ tableFilter(scope.row.alarmtype) }}
  158. </span>
  159. <span v-else-if="item.code == 'ts'">
  160. {{ formatTime(scope.row.ts) }}
  161. </span>
  162. <span v-else>
  163. {{ scope.row[item.code] }}
  164. </span>
  165. </template>
  166. </el-table-column>
  167. </el-table>
  168. <div class="pagination-wrapper">
  169. <el-pagination
  170. background
  171. layout="total, prev, pager, next"
  172. hide-on-single-page
  173. :current-page="query.page"
  174. :page-size="query.limit"
  175. :total="query.pageTotal"
  176. @current-change="handlePageChange"
  177. ></el-pagination>
  178. </div>
  179. </div>
  180. </template>
  181. <script setup>
  182. import { watch, reactive, nextTick, computed, onMounted } from "vue";
  183. import dayjs from "dayjs";
  184. import {
  185. alarm_history,
  186. new_alarm_history,
  187. fetchWindturbineList,
  188. fetchModel,
  189. fetchRelatePartAndAlarmType,
  190. } from "/@/api/api.js";
  191. import { ElMessage } from "element-plus";
  192. import { initWebSocket } from "/@/websocket/indextest";
  193. import { outExportExcel } from "/@/utils/exportExcel"; //引入文件
  194. import { useStore } from "vuex";
  195. const store = useStore();
  196. const isStation = computed(() => store.getters.isStation);
  197. onMounted(() => {
  198. getequipmentmodel_list();
  199. getfetchRelatePart();
  200. state.dateTime = [
  201. dayjs().startOf("day").format("YYYY-MM-DD HH:mm:ss"),
  202. dayjs().format("YYYY-MM-DD HH:mm:ss"),
  203. ];
  204. });
  205. // 机型
  206. const getequipmentmodel_list = async () => {
  207. const { data } = await fetchModel();
  208. state.modelListAll = data;
  209. };
  210. //所属部件
  211. const getfetchRelatePart = async () => {
  212. const { data } = await fetchRelatePartAndAlarmType();
  213. state.fetchListAll = data;
  214. };
  215. const state = reactive({
  216. typeList: [
  217. {
  218. label: "升压站",
  219. value: "booststation",
  220. },
  221. // {
  222. // label: "自定义",
  223. // value: "custom",
  224. // },
  225. {
  226. label: "风机",
  227. value: "windturbine",
  228. },
  229. ],
  230. typeVal: "windturbine",
  231. stationId: "",
  232. windturbineList: [],
  233. windturbineId: "",
  234. modelListAll: {},
  235. fetchListAll: {},
  236. modelId: "", //型号
  237. components: "", //部件
  238. description: "", //描述
  239. dateTime: [],
  240. startDate: null,
  241. endDate: null,
  242. tableData: [],
  243. isshowwindturbineName: true,
  244. tableHeader: [
  245. { title: "时间", code: "ts", width: "180" },
  246. { title: "场站", code: "stationname", width: "180" },
  247. { title: "机组", code: "devicename", width: "180" },
  248. { title: "报警信息", code: "description" },
  249. { title: "级别", code: "rank", width: "80" },
  250. { title: "类型", code: "alarmtype", width: "80" },
  251. ],
  252. tableHeader1: [
  253. { title: "时间", code: "ts", width: "180" },
  254. { title: "升压站", code: "stationname", width: "180" },
  255. { title: "报警信息", code: "description" },
  256. { title: "级别", code: "rank", width: "80" },
  257. { title: "类型", code: "alarmtype", width: "80" },
  258. ],
  259. });
  260. // 场站列表/升压站列表
  261. const stationList = computed(() => {
  262. if (state.typeVal == "windturbine") {
  263. return store.state.stationListAll;
  264. } else if (state.typeVal == "booststation") {
  265. return store.state.booststationList;
  266. }
  267. });
  268. watch(
  269. () => stationList,
  270. (val, old) => {
  271. val.value.length &&
  272. nextTick(async () => {
  273. state.stationId = val.value[0]?.id;
  274. await getWindturbineList();
  275. await getAlarmHistoryt();
  276. });
  277. },
  278. {
  279. deep: true,
  280. immediate: true,
  281. }
  282. );
  283. //型号列表
  284. const modelList = computed(() => {
  285. if (state.typeVal == "windturbine") {
  286. if (state.stationId == "") {
  287. return [];
  288. } else {
  289. return state.modelListAll[state.stationId];
  290. }
  291. } else {
  292. return [];
  293. }
  294. });
  295. //部件列表
  296. const componentList = computed(() => {
  297. if (state.typeVal == "windturbine") {
  298. if (state.stationId == "") {
  299. return [];
  300. } else {
  301. if (state.stationId.includes("FDC")) {
  302. return state.fetchListAll?.fjbj;
  303. } else {
  304. return state.fetchListAll?.gfbj;
  305. }
  306. }
  307. } else {
  308. return [];
  309. }
  310. });
  311. //get 风机
  312. const getWindturbineList = async () => {
  313. state.windturbineList = [];
  314. state.windturbineId = "";
  315. const { data } = await fetchWindturbineList(state.stationId);
  316. state.windturbineList = data;
  317. };
  318. const query = reactive({
  319. page: 1,
  320. limit: 17,
  321. pageTotal: null,
  322. });
  323. // 获取历史记录表
  324. const getAlarmHistoryt = async () => {
  325. let params = {
  326. pageNum: query.page,
  327. pageSize: query.limit,
  328. alarmType: state.typeVal,
  329. stationid: state.stationId,
  330. deviceid: state.typeVal == "booststation" ? "" : state.windturbineId,
  331. modelId: state.modelId,
  332. components: state.components,
  333. description: state.description,
  334. begin: state.dateTime[0],
  335. end: state.dateTime[1],
  336. };
  337. const { data } = await alarm_history(params);
  338. query.pageTotal = data?.total;
  339. state.tableData = data?.ls;
  340. };
  341. //报警类型变化
  342. const typechange = () => {
  343. state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
  344. };
  345. // 批量导出
  346. const export2Excel = async () => {
  347. let params = {
  348. pageNum: query.page,
  349. pageSize: query.pageTotal,
  350. alarmType: state.typeVal,
  351. stationid: state.stationId,
  352. deviceid: state.typeVal == "booststation" ? "" : state.windturbineId,
  353. modelId: state.modelId,
  354. components: state.components,
  355. description: state.description,
  356. begin: state.dateTime[0],
  357. end: state.dateTime[1],
  358. };
  359. if (state.dateTime[1] - state.dateTime[0] > 6 * 24 * 60 * 60 * 1000) {
  360. this.$message({
  361. message: "导出时间范围不能大于7天",
  362. type: "warning",
  363. });
  364. } else {
  365. let tableHeader = [];
  366. let tableKey = [];
  367. const { data } = await alarm_history(params);
  368. if (state.isshowwindturbineName) {
  369. tableHeader = state.tableHeader.map((item) => item.title);
  370. tableKey = state.tableHeader.map((item) => item.code);
  371. } else {
  372. tableHeader = state.tableHeader1.map((item) => item.title);
  373. tableKey = state.tableHeader1.map((item) => item.code);
  374. }
  375. const stationName = stationList.value.find((ele) => {
  376. return ele.id === state.stationId;
  377. }).name;
  378. const fileName = `${stationName} ${state.dateTime[0]} ~ ${state.dateTime[1]} 数据表`;
  379. outExportExcel(
  380. tableHeader,
  381. tableKey,
  382. data.ls.map((item) => {
  383. return {
  384. ...item,
  385. ts: formatTime(item.ts),
  386. rank: tableFilter(item.rank),
  387. alarmtype: tableFilter(item.alarmtype),
  388. };
  389. }),
  390. fileName
  391. );
  392. ElMessage.success(`导出成功!`);
  393. }
  394. };
  395. // 分页导航
  396. const handlePageChange = (val) => {
  397. query.page = val;
  398. getAlarmHistoryt();
  399. };
  400. // 时间格式化
  401. const formatTime = (val) => {
  402. return dayjs(val).format("YYYY-MM-DD HH:mm:ss");
  403. };
  404. // 格式化
  405. const obj = {
  406. 1: "低级",
  407. 2: "中低级",
  408. 3: "中级",
  409. 4: "中高级",
  410. 5: "高级",
  411. booststation: "升压站",
  412. custom: "自定义",
  413. windturbine: "风机",
  414. };
  415. const messageTypeObj = {
  416. 1: "触发",
  417. 3: "解除",
  418. };
  419. const tableFilter = (val) => {
  420. return obj[val];
  421. };
  422. const messageTypeFilter = (val) => {
  423. return messageTypeObj[val];
  424. };
  425. </script>
  426. <style scoped lang="scss">
  427. .table-wrapper {
  428. height: calc(100% - 70px - 50px);
  429. background-color: #fff;
  430. margin-top: 10px;
  431. padding: 20px;
  432. .pagination-wrapper :deep {
  433. text-align: right;
  434. margin-top: 10px;
  435. .el-icon {
  436. width: unset;
  437. }
  438. }
  439. }
  440. </style>