处理待办事项

This commit is contained in:
2026-01-15 18:00:15 +08:00
parent 7ee44c0663
commit 1364fb2446
84 changed files with 374 additions and 9005 deletions

View File

@@ -91,3 +91,20 @@ export function fetchTodoList(data : {}) {
method: 'POST'
});
}
// 编辑待办
export function fetchEditTodo(data : {}) {
return request({
url: '/index/editTodo',
data: data,
method: 'POST'
});
}
// 编辑待办
export function fetchAddTodo(data : {}) {
return request({
url: '/index/addTodo',
data: data,
method: 'POST'
});
}