处理待办事项

This commit is contained in:
2026-01-15 17:12:46 +08:00
parent 1a0f43b1bd
commit 7ee44c0663
29 changed files with 3215 additions and 63 deletions

View File

@@ -83,3 +83,11 @@ export function fetchRoomOrder(roomId : Number) {
}
// 待办列表
export function fetchTodoList(data : {}) {
return request({
url: '/index/todoList',
data: data,
method: 'POST'
});
}