Commit 1b9b06c7 authored by KeYong's avatar KeYong

更新删除装备大屏不刷新问题

parent f88fddd3
...@@ -936,7 +936,9 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM ...@@ -936,7 +936,9 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
} }
String code = this.getSystemCodeBySpeId(equipmentSpecific.getSystemId()); String code = this.getSystemCodeBySpeId(equipmentSpecific.getSystemId());
int res = this.baseMapper.deleteById(id); int res = this.baseMapper.deleteById(id);
this.integrationPageSysDataRefresh(code); if (StringUtil.isNotEmpty(code)) {
this.integrationPageSysDataRefresh(code);
}
if (res > 0 && syncSwitch) { if (res > 0 && syncSwitch) {
//数据同步 //数据同步
delEquipmentSpecificSyncData(id); delEquipmentSpecificSyncData(id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment