pc端对接问题修复

pull/14/head
songwenxuan 2023-12-29 17:42:29 +08:00
parent 7fb1cc39e1
commit 404bb8547a
1 changed files with 2 additions and 0 deletions

View File

@ -84,6 +84,7 @@ public class FireResourcesController extends BaseController {
pd.put("ISDELETE", "0"); pd.put("ISDELETE", "0");
fireResourcesService.edit(pd,files); fireResourcesService.edit(pd,files);
map.put("result", errInfo); map.put("result", errInfo);
map.put("dockData",JSON.toJSONString(pd));
return map; return map;
} }
@ -97,6 +98,7 @@ public class FireResourcesController extends BaseController {
pd = this.getPageData(); pd = this.getPageData();
fireResourcesService.delete(pd); fireResourcesService.delete(pd);
map.put("result", errInfo); map.put("result", errInfo);
map.put("dockData",JSON.toJSONString(pd));
return map; return map;
} }
} }