forked from github/dataease
refactor(X-Pack): 数据填报界面优化
This commit is contained in:
parent
405e0c1a52
commit
4ed0a389b0
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
||||
Subproject commit 601d8c33f29ab0921b53a2847add0afdc7af9f90
|
||||
Subproject commit 0b94df2af3e212aa0b6fee2e6b848818392c5b74
|
@ -67,6 +67,7 @@ public interface DataFillingApi {
|
||||
@PostMapping("/form/{formId}/batch-delete")
|
||||
void batchDeleteRowData(@PathVariable("formId") Long formId, @RequestBody List<Long> ids) throws Exception;
|
||||
|
||||
@DePermit({"#p0+':manage'"})
|
||||
@PostMapping("/form/{formId}/rowData/save")
|
||||
DataFillFormTableDataResponse saveRowData(@PathVariable("formId") Long formId, @RequestBody Map<String, Object> data) throws Exception;
|
||||
|
||||
@ -105,8 +106,8 @@ public interface DataFillingApi {
|
||||
@GetMapping("/sub-task/{id}/users/list/{type}")
|
||||
List<Map<String, Object>> listSubTaskUser(@PathVariable("id") Long id, @PathVariable("type") String type) throws Exception;
|
||||
|
||||
@PostMapping("/user-task")
|
||||
List<DfUserTaskVo> listUserTask(@RequestBody DfUserTaskRequest request) throws Exception;
|
||||
@PostMapping("/user-task/page/{goPage}/{pageSize}")
|
||||
IPage<DfUserTaskVo> listUserTask(@PathVariable("goPage") int goPage, @PathVariable("pageSize") int pageSize,@RequestBody DfUserTaskRequest request) throws Exception;
|
||||
|
||||
@GetMapping("/user-task/list/{id}")
|
||||
DfUserTaskData listUserTaskData(@PathVariable("id") Long id) throws Exception;
|
||||
|
Loading…
Reference in New Issue
Block a user