feat(oa): 完成审批历史页面全链路开发,含前后端接口、菜单配置

This commit is contained in:
2026-04-14 20:36:01 +08:00
parent 5d4794c9bd
commit f4dbe29d8e
11 changed files with 336 additions and 59 deletions

View File

@@ -174,4 +174,12 @@ public class WfTaskController {
}
}
}
/**
* 审批历史列表
*/
@SaCheckPermission("workflow:task:historyList")
@GetMapping("/historyList")
public R historyList() {
return R.ok(flowTaskService.selectHistoryTaskList());
}
}