领料分页bug修改
This commit is contained in:
parent
a573f4d0fc
commit
da293da762
|
|
@ -286,11 +286,13 @@ public class TmTaskController extends BaseController {
|
||||||
if (StringUtils.isNull(task)) {
|
if (StringUtils.isNull(task)) {
|
||||||
return AjaxResult.error("参数错误");
|
return AjaxResult.error("参数错误");
|
||||||
}
|
}
|
||||||
List<TmTask> leaseAuditList = tmTaskService.getLeaseAuditList(task);
|
List<TmTask> leaseAuditList = new ArrayList<>();
|
||||||
if (souceBy == 1) {
|
if (souceBy == 1) {
|
||||||
|
leaseAuditList = tmTaskService.getLeaseAuditList(task);
|
||||||
return AjaxResult.success(leaseAuditList);
|
return AjaxResult.success(leaseAuditList);
|
||||||
}
|
}
|
||||||
startPage();
|
startPage();
|
||||||
|
leaseAuditList = tmTaskService.getLeaseAuditList(task);
|
||||||
return AjaxResult.success(getDataTable(leaseAuditList));
|
return AjaxResult.success(getDataTable(leaseAuditList));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue