Browse Source

158分站更新

lxh 1 month ago
parent
commit
92aa8e9b54

+ 7 - 3
src/views/vent/safetyList/common/operateRecord.vue

@@ -96,10 +96,14 @@ async function get158StationDevicesList() {
     }
 }
 function dropdownVisibleChange(open){
-    if(open && searchData.stationId){
-        get158StationDevicesList()
+    if(open){
+        if(searchData.stationId){
+            get158StationDevicesList()
+        }else {
+            createMessage.warning('请选择对应分站!');
+        }   
     }else {
-        createMessage.warning('请选择对应分站!');
+        return 
     }
 }
 //查询

+ 1 - 1
src/views/vent/safetyList/safetyList.api.ts

@@ -41,6 +41,6 @@ export const set158StationRead = (params) => defHttp.post({ url: Api.set158Stati
 //删除158分站及其关联传感器
 export const remove158Substation = (params) => defHttp.post({ url: Api.remove158Substation, params }, { joinParamsToUrl: true });
 //158分站操作记录
-export const get158SetLog = (params) => defHttp.post({ url: Api.get158SetLog,params });
+export const get158SetLog = (params) => defHttp.post({ url: Api.get158SetLog,params }, { joinParamsToUrl: true });
 //删除158分站传感器
 export const remove158Device = (params) => defHttp.post({ url: Api.remove158Device, params });