Ver Fonte

[Fix 0000] 130分站api调用错误修复

houzekong há 4 dias atrás
pai
commit
58f2654acd

+ 2 - 2
src/views/vent/safetyList/common/detail-130.vue

@@ -391,7 +391,7 @@
   import { usePermission } from '/@/hooks/web/usePermission';
   import {
     subStationList,
-    getList,
+    get130List,
     getListAll,
     getEdit,
     runDeviceMonitor,
@@ -827,7 +827,7 @@
   }
   //获取详细信息列表
   async function getStationList1() {
-    const res = await getList({ subId: stationId.value, pageNo: pagination.current, pageSize: pagination.pageSize });
+    const res = await get130List({ subId: stationId.value, pageNo: pagination.current, pageSize: pagination.pageSize });
     if (res && res.length != 0) {
       res.forEach((el) => {
         el.key = el.id;

+ 3 - 0
src/views/vent/safetyList/safetyList.api.ts

@@ -24,6 +24,7 @@ enum Api {
   get130SetLog = '/safety/ventanalySubStation/get130SetLog', //操作记录
   remove130Device = '/safety/ventanalyDeviceInfo/remove130Device', //删除130分站传感器
   set130StationDevicesRead = '/safety/ventanalyDeviceInfo/set130StationDevicesRead',
+  get130List = '/safety/ventanalyDeviceInfo/get130DeviceListBySubId',
 }
 
 // 分站查询接口
@@ -74,3 +75,5 @@ export const get130SetLog = (params) => defHttp.post({ url: Api.get130SetLog, pa
 export const remove130Device = (params) => defHttp.post({ url: Api.remove130Device, params });
 //130监测详情读取列表
 export const set130StationDevicesRead = (params) => defHttp.post({ url: Api.set130StationDevicesRead, params }, { joinParamsToUrl: true });
+// 分站详细信息列表
+export const get130List = (params) => defHttp.post({ url: Api.get130List, params });