|
@@ -223,7 +223,7 @@ public class TaskController {
|
|
|
@PostMapping("/addCrowdTaskDefault")
|
|
|
@ResponseBody
|
|
|
public SimpleResponse addCrowdTaskDefault(@RequestParam("name")String name, @RequestParam("description")String description,
|
|
|
- @RequestParam("time")String time, @RequestParam("collaborativeType")int collaborativeType,
|
|
|
+ @RequestParam("collaborativeType")int collaborativeType,
|
|
|
@RequestParam("threePageUrl") String threePageUrl, @RequestParam("fileName") String fileName){
|
|
|
Map<String, Object> configurationMap = configurationService.getConfigurationMap();
|
|
|
String os = configurationMap.get("os").toString();
|
|
@@ -235,10 +235,6 @@ public class TaskController {
|
|
|
}
|
|
|
long caseId = taskService.addCrowdTaskDefault(name, description, os, threePageUrl, fileName, collaborativeType);
|
|
|
long examId = caseId;
|
|
|
- // 返回服务序列号
|
|
|
-// String encodedUrl = taskService.getEncodeTaskReportUrl(examId, caseId);
|
|
|
-// String writeReportUrl = taskService.getTaskReportUrl(examId, caseId);
|
|
|
-// encodedUrl = encodedUrl.replaceAll("%3D", "=");
|
|
|
// 返回大图url
|
|
|
String taskDaPanUrl = taskService.getTaskDaPanUrl(examId, caseId);
|
|
|
taskDaPanUrl = taskDaPanUrl.replaceAll("%3D", "=");
|