index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <template>
  2. <div
  3. class="custom-warning"
  4. v-loading="tableLoading"
  5. element-loading-text="加载中..."
  6. element-loading-background="rgba(4, 12, 11, 0.8)"
  7. >
  8. <div class="form-wrapper">
  9. <div class="search-wrapper">
  10. <div class="search-item">
  11. <span class="label">场站:</span>
  12. <div class="search-content">
  13. <el-select
  14. v-model="state.stationId"
  15. clearable
  16. size="mini"
  17. placeholder="全部"
  18. popper-class="select"
  19. @change="getWindturbineList"
  20. >
  21. <el-option
  22. v-for="item in stationList"
  23. :key="item.id"
  24. :value="item.id"
  25. :label="item.name"
  26. ></el-option>
  27. </el-select>
  28. </div>
  29. </div>
  30. <div class="search-item">
  31. <span class="label">日期:</span>
  32. <div class="search-content">
  33. <el-date-picker
  34. v-model="state.dateTime"
  35. size="mini"
  36. type="datetimerange"
  37. range-separator="-"
  38. format="YYYY-MM-DD HH:mm:ss"
  39. value-format="YYYY-MM-DD HH:mm:ss"
  40. start-placeholder="开始"
  41. end-placeholder="结束"
  42. popper-class="date-select"
  43. >
  44. </el-date-picker>
  45. </div>
  46. </div>
  47. <el-button class="buttons" round size="mini">查询</el-button>
  48. </div>
  49. </div>
  50. <div class="table-wrapper">
  51. <div class="leftContent">
  52. <span>{{ pageTitle }}</span>
  53. </div>
  54. <el-table
  55. size="mini"
  56. :data="state.tableData"
  57. height="calc(100% - 35px - 55px)"
  58. style="width: 100%"
  59. stripe
  60. >
  61. <el-table-column
  62. v-for="item in state.tableHeader"
  63. :label="item.title"
  64. :prop="item.code"
  65. :key="item.code"
  66. :width="item.width || ''"
  67. show-overflow-tooltip
  68. header-align="center"
  69. align="center"
  70. >
  71. <template #default="scope">
  72. <p v-if="item.code === 'ts'">{{formatTime(scope.row[item.code])}}</p>
  73. <p v-else>{{scope.row[item.code]}}</p>
  74. </template>
  75. </el-table-column>
  76. <el-table-column
  77. label="操作"
  78. width="200"
  79. header-align="center"
  80. align="center"
  81. >
  82. <template #default="scope">
  83. <el-button style="color: #05bb4c" type="text" @click="export2Excel(scope.row)">查看报告</el-button>
  84. <!-- @click="confirmItem([scope.row])" -->
  85. </template>
  86. </el-table-column>
  87. </el-table>
  88. <div class="pagination-wrapper">
  89. <el-pagination
  90. layout="total, sizes, prev, pager, next"
  91. :current-page="query.page"
  92. :page-size="query.limit"
  93. :page-sizes="[21, 100, 500, 1000]"
  94. :total="query.pageTotal"
  95. @size-change="
  96. (value) => {
  97. query.page = 1;
  98. query.limit = value;
  99. getAlarmHistoryt();
  100. }
  101. "
  102. @current-change="handlePageChange"
  103. ></el-pagination>
  104. </div>
  105. </div>
  106. <HealthReport ref="healthReportRef"></HealthReport>
  107. </div>
  108. </template>
  109. <script setup>
  110. import { getStation } from "@/api/performance";
  111. import {
  112. watch,
  113. reactive,
  114. nextTick,
  115. computed,
  116. onMounted,
  117. ref,
  118. onActivated,
  119. onUpdated,
  120. } from "vue";
  121. import { useRouter, useRoute } from "vue-router";
  122. import dayjs from "dayjs";
  123. import HealthReport from "@com/other/healthReport/index.vue";
  124. import {
  125. alarm_history,
  126. new_alarm_history,
  127. fetchWindturbineList,
  128. fetchModel,
  129. fetchRelatePartAndAlarmType,
  130. getWpList,
  131. confirmAlart,
  132. } from "@/api/zhbj/index.js";
  133. import { ElMessage, ElMessageBox } from "element-plus";
  134. import { outExportExcel } from "@/tools/excel/exportExcel.js"; //引入文件
  135. import { useStore } from "vuex";
  136. const pageTitle = "健康评价报告";
  137. const store = useStore();
  138. const route = useRoute();
  139. onMounted(() => {
  140. state.dateTime = [
  141. dayjs().startOf("day").format("YYYY-MM-DD HH:mm:ss"),
  142. dayjs().format("YYYY-MM-DD HH:mm:ss"),
  143. ];
  144. state.deviceId = route.query.deviceId || "";
  145. state.alarmId = route.query.alarmId || "";
  146. state.modelId = route.query.modelId || "";
  147. getStationList();
  148. getequipmentmodel_list();
  149. getfetchRelatePart();
  150. getAlarmHistoryt()
  151. });
  152. const healthReportRef = ref()
  153. // 机型
  154. const getequipmentmodel_list = async () => {
  155. const { data } = await fetchModel();
  156. state.modelListAll = data;
  157. };
  158. //所属部件
  159. const getfetchRelatePart = async () => {
  160. const { data } = await fetchRelatePartAndAlarmType();
  161. state.fetchListAll = data;
  162. };
  163. const confirmItem = (alarmItem) => {
  164. ElMessageBox("您确定要执行此操作吗?", "提示", {
  165. confirmButtonText: "确定",
  166. cancelButtonText: "取消",
  167. type: "warning",
  168. })
  169. .then(() => {
  170. confirmAlart(alarmItem)
  171. .then((res) => {
  172. if (res.code === 200) {
  173. ElMessage.success("确认成功");
  174. store.commit("removeWarning", alarmItem);
  175. getAlarmHistoryt();
  176. }
  177. })
  178. .catch(() => {
  179. ElMessage.error("确认失败,请重试");
  180. });
  181. })
  182. .catch(() => {});
  183. };
  184. const getColumnStyle = (columnItem) => {
  185. let style = "color:";
  186. if (columnItem.endts) {
  187. style += "#05bb4c";
  188. } else {
  189. style += "var(--el-color-danger)";
  190. }
  191. return style;
  192. };
  193. const state = reactive({
  194. typeList: [
  195. // {
  196. // label: "升压站",
  197. // value: "booststation",
  198. // },
  199. // {
  200. // label: "自定义",
  201. // value: "custom",
  202. // },
  203. {
  204. label: "风机",
  205. value: "windturbine",
  206. },
  207. // {
  208. // label: "光伏",
  209. // value: "inverter",
  210. // },
  211. ],
  212. c: "windturbine",
  213. stationId: "",
  214. alarmId: "",
  215. typeVal: "windturbine",
  216. windturbineList: [],
  217. deviceId: "",
  218. modelListAll: {},
  219. fetchListAll: {},
  220. modelId: "", //型号
  221. components: "", //部件
  222. description: "", //描述
  223. dateTime: [],
  224. startDate: null,
  225. endDate: null,
  226. tableData: [],
  227. isshowwindturbineName: true,
  228. tableHeader: [
  229. { title: "场站", code: "stationname" },
  230. { title: "时间", code: "ts" },
  231. ]
  232. });
  233. // 场站列表/升压站列表
  234. const stationList = ref([]);
  235. const getStationList = async () => {
  236. // const { data } = await getWpList(state.typeVal);
  237. // stationList.value = data;
  238. const { data } = await getStation({
  239. companyids: 0,
  240. type: state.typeVal == "windturbine" ? -1 : -2,
  241. });
  242. stationList.value = data.data;
  243. // if (state.deviceId) {
  244. // let station = data.find((i) => {
  245. // let st = i.id.split("_")[2];
  246. // let dt = state.deviceId.split("_")[2];
  247. // if (st == dt) {
  248. // return i;
  249. // }
  250. // });
  251. // state.stationId = station?.id;
  252. // } else {
  253. // state.stationId =
  254. // state.typeVal == "windturbine" ? "SXJ_KGDL_DJY_FDC_STA" : data[0]?.id;
  255. // }
  256. if (stationList.value.length) {
  257. await getWindturbineList();
  258. await getAlarmHistoryt();
  259. }
  260. };
  261. // watch(
  262. // () => stationList,
  263. // (val, old) => {
  264. // val?.value?.length &&
  265. // nextTick(async () => {
  266. // await getWindturbineList();
  267. // await getAlarmHistoryt();
  268. // });
  269. // },
  270. // {
  271. // deep: true,
  272. // immediate: true,
  273. // }
  274. // );
  275. watch(
  276. () => route,
  277. (val, old) => {
  278. state.deviceId = route.query.deviceId || "";
  279. state.alarmId = route.query.alarmId || "";
  280. state.modelId = route.query.modelId || "";
  281. // nextTick(async () => {
  282. // if (route.params.deviceId && route.params.alarmId) {
  283. // await getAlarmHistoryt();
  284. // }
  285. // });
  286. },
  287. {
  288. deep: true,
  289. immediate: true,
  290. }
  291. );
  292. //型号列表
  293. const modelList = computed(() => {
  294. if (state.stationId == "") {
  295. return [];
  296. } else {
  297. state.modelId = route.query.deviceId ? route.query.modelId : "";
  298. return state.modelListAll[state.stationId];
  299. }
  300. });
  301. //部件列表
  302. const componentList = computed(() => {
  303. if (state.stationId == "") {
  304. return [];
  305. } else {
  306. if (state.stationId.includes("FDC")) {
  307. return state.fetchListAll?.fjbj;
  308. } else {
  309. return state.fetchListAll?.gfbj;
  310. }
  311. }
  312. });
  313. //get 风机
  314. const getWindturbineList = async () => {
  315. state.deviceId = "";
  316. // const { data } = await fetchWindturbineList(state.stationId);
  317. // state.windturbineList = data;
  318. state.windturbineList = [
  319. {
  320. id: "SXJ_KGDL_XWT_F_WT_0001_EQ",
  321. nemCode: "#1",
  322. windpowerstationId: "SXJ_KGDL_XWT_FDC_STA",
  323. longitude: 112.415335,
  324. latitude: 40.281307,
  325. modelId: "SEC-W02B-1250kW",
  326. status: "NULL",
  327. projectId: "SXJ_KGDL_XWTF01_EG",
  328. lineId: "SXJ_KGDL_XWTF01_LN",
  329. firstIntegratedTime: "2008-07-27T16:00:00.000+0000",
  330. photo: "NULL",
  331. name: "01号风机",
  332. aname: "#1",
  333. isStandard: 1,
  334. regionId: "NX_FGS",
  335. companyId: "SXJ_KGDL_FLFD_ZGS",
  336. isable: 1,
  337. equipmentCategory: -1,
  338. parentId: "NULL",
  339. squareId: "NULL",
  340. spare1: "WT",
  341. spare2: "1",
  342. spare3: "NULL",
  343. spare4: "NULL",
  344. orderNum: 271,
  345. substationId: "SXJ_KGDL_XWTF01_SBS",
  346. },
  347. ];
  348. };
  349. const query = reactive({
  350. page: 1,
  351. limit: 21,
  352. pageTotal: null,
  353. });
  354. const tableLoading = ref(false);
  355. // 获取历史记录表
  356. const getAlarmHistoryt = async () => {
  357. // if (route.params.deviceId && route.params.alarmId) {
  358. // state.stationId = "";
  359. // }
  360. // tableLoading.value = true;
  361. // let params = {
  362. // pageNum: query.page,
  363. // pageSize: query.limit,
  364. // alarmId: state.alarmId,
  365. // alarmType: "custom",
  366. // deviceType: state.typeVal,
  367. // stationid: state.stationId,
  368. // deviceid:
  369. // state.deviceId || (state.typeVal == "booststation" ? "" : state.deviceId),
  370. // modelId: state.typeVal == "booststation" ? "" : state.modelId,
  371. // components: state.components,
  372. // description: state.description,
  373. // begin: state.dateTime[0],
  374. // end: state.dateTime[1],
  375. // };
  376. // const { data } = await alarm_history(params);
  377. // tableLoading.value = false;
  378. // query.pageTotal = data?.total;
  379. // data?.ls?.forEach((ele) => {
  380. // ele.isCloseName = ele.endts ? "已解除" : "未解除";
  381. // ele.deviceTypeName = tableFilter(ele.deviceType);
  382. // ele.endtsName = ele.endts > 0 ? formatTime(ele.endts) : "--";
  383. // });
  384. // state.tableData = data?.ls;
  385. state.tableData = new Array(5).fill({
  386. tbName: null,
  387. alarmId: "SQ_0125",
  388. alarmType: "windturbine",
  389. characteristic: "预警",
  390. components: "BPQ",
  391. confirmed: false,
  392. description: "变频器故障27",
  393. deviceId: "SXJ_KGDL_XWT_F_WT_0014_EQ",
  394. devicename: "14号风机",
  395. deviceType: "windturbine",
  396. enabled: true,
  397. lineid: "SXJ_KGDL_XWTF01_LN",
  398. linename: "一号风机线",
  399. modelId: "SEC-W02B-1250kW",
  400. projectid: "SXJ_KGDL_XWTF01_EG",
  401. projectname: "一期项目",
  402. rank: 3,
  403. resettable: false,
  404. stationid: "SXJ_KGDL_XWT_FDC_STA",
  405. stationname: "13风电场",
  406. subcomponents: "NULL",
  407. suffix: null,
  408. tagid: "FD-YYXWT-ShangQi.140623F1412MDL01BF399DB0122SP01RAW00",
  409. triggertype: 1463,
  410. uniformcode: "BJ0001",
  411. superTableName: null,
  412. ts: 1718160795000,
  413. val: 1,
  414. oval: null,
  415. endts: 0,
  416. timelong: 0,
  417. name: null,
  418. nemCode: "状态码1463",
  419. faultCause: "13.7s>信号<=14.2s",
  420. resolvent: "输入端142功率上升延迟300s",
  421. wpName: "13风电场",
  422. code: "#14",
  423. wpId: null,
  424. faultType: null,
  425. id: "sxj_kgdl_xwt_f_wt_0014_eq_sq_0125",
  426. });
  427. };
  428. //报警类型变化
  429. const typechange = () => {
  430. state.alarmId = "";
  431. state.deviceId = "";
  432. state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
  433. };
  434. // 查看报告
  435. const export2Excel = () =>{
  436. healthReportRef.value.dialogVisible = true
  437. }
  438. // 分页导航
  439. const handlePageChange = (val) => {
  440. query.page = val;
  441. getAlarmHistoryt();
  442. };
  443. // 时间格式化
  444. const formatTime = (val) => {
  445. return dayjs(val).format("YYYY-MM-DD HH:mm:ss");
  446. };
  447. // 格式化
  448. const obj = {
  449. 1: "低级",
  450. 2: "低中级",
  451. 3: "中级",
  452. 4: "中高级",
  453. 5: "高级",
  454. booststation: "升压站",
  455. custom: "自定义",
  456. windturbine: "风机",
  457. inverter: "光伏",
  458. };
  459. const messageTypeObj = {
  460. 1: "触发",
  461. 3: "解除",
  462. };
  463. const tableFilter = (val) => {
  464. return obj[val];
  465. };
  466. const messageTypeFilter = (val) => {
  467. return messageTypeObj[val];
  468. };
  469. </script>
  470. <style scoped lang="less">
  471. p {
  472. padding: 0;
  473. margin: 0;
  474. }
  475. .custom-warning {
  476. height: 100%;
  477. width: 100%;
  478. padding: 0 20px;
  479. padding-bottom: 10px;
  480. .form-wrapper ::v-deep {
  481. display: flex;
  482. flex-direction: column;
  483. padding-top: 10px;
  484. position: relative;
  485. .search-wrapper {
  486. display: flex;
  487. align-items: center;
  488. font-size: 14px;
  489. font-family: Microsoft YaHei;
  490. font-weight: 400;
  491. color: #b3b3b3;
  492. margin-bottom: 10px;
  493. .search-item {
  494. display: flex;
  495. margin-right: 10px;
  496. max-width: 450px;
  497. align-items: center;
  498. .label {
  499. margin-right: 10px;
  500. text-align: right;
  501. white-space: nowrap;
  502. // width: 60px;
  503. }
  504. .search-content {
  505. flex: 1;
  506. }
  507. }
  508. }
  509. .btns {
  510. display: flex;
  511. justify-content: flex-end;
  512. margin-right: 10px;
  513. position: absolute;
  514. right: 0;
  515. top: 53px;
  516. }
  517. .buttons {
  518. background-color: rgba(5, 187, 76, 0.2);
  519. border: 1px solid #3b6c53;
  520. color: #b3b3b3;
  521. font-size: 14px;
  522. &:hover {
  523. background-color: rgba(5, 187, 76, 0.5);
  524. color: #ffffff;
  525. }
  526. }
  527. }
  528. .table-wrapper {
  529. height: calc(100% - 43px);
  530. width: 100%;
  531. .leftContent {
  532. width: 242px;
  533. height: 41px;
  534. display: flex;
  535. align-items: center;
  536. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  537. span {
  538. font-size: 16px;
  539. font-family: Microsoft YaHei;
  540. font-weight: 400;
  541. color: #05bb4c;
  542. margin-left: 25px;
  543. }
  544. }
  545. .pagination-wrapper :deep {
  546. text-align: right;
  547. margin-top: 10px;
  548. }
  549. }
  550. }
  551. </style>