|
@@ -423,7 +423,7 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
//封装要使用到的数据
|
|
//封装要使用到的数据
|
|
SimulationManualProjectPo poParam = new SimulationManualProjectPo();
|
|
SimulationManualProjectPo poParam = new SimulationManualProjectPo();
|
|
|
|
|
|
- if ("1".equals(param.getProjectType())) {
|
|
|
|
|
|
+ if ("1".equals(param.getProjectType())) { // 手动运行任务
|
|
//项目基本信息
|
|
//项目基本信息
|
|
SimulationManualProjectPo po = simulationProjectMapper.selectProjectById(param);
|
|
SimulationManualProjectPo po = simulationProjectMapper.selectProjectById(param);
|
|
if (po == null) {
|
|
if (po == null) {
|
|
@@ -890,8 +890,8 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
//第三方算法平台
|
|
//第三方算法平台
|
|
if ("3".equals(algorithmType)) {
|
|
if ("3".equals(algorithmType)) {
|
|
String sort = "algorithmId-desc";
|
|
String sort = "algorithmId-desc";
|
|
- Integer page = 1;
|
|
|
|
- Integer size = 1;//全部
|
|
|
|
|
|
+ int page = 1;
|
|
|
|
+ int size = 1;//全部
|
|
|
|
|
|
String urlParam = "&algorithmId" + algorithmId + "&page=" + page + "&size=" + size + "&sort=" + sort;
|
|
String urlParam = "&algorithmId" + algorithmId + "&page=" + page + "&size=" + size + "&sort=" + sort;
|
|
List<DropDownVo> otherAlgorithmInfo = getOtherAlgorithmInfo(urlParam);
|
|
List<DropDownVo> otherAlgorithmInfo = getOtherAlgorithmInfo(urlParam);
|