ug修改 #127

Merged
wangqiong123 merged 37 commits from dev into prod 2024-03-19 10:27:15 +00:00
Showing only changes of commit 8a7cf059fd - Show all commits
@@ -3798,10 +3798,9 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
if (file.exists()) {
// 调用onlyoffice
try {
onlyOfficeUrl= onlyOfficeUrl+ "/"+String.valueOf(caseId);
Map<String, Object> params = new HashMap<>();
params.put("file", file);
String postResult = HttpUtil.post(onlyOfficeUrl, params);
String postResult = HttpUtil.post(onlyOfficeUrl+ "/"+String.valueOf(caseId), params);
if(StrUtil.isNotEmpty(postResult)){
// 转为jsonArray
JSONArray jsonArray = JSONArray.parseArray(postResult);