处理待办事项

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

@@ -48,14 +48,6 @@ export function fetchFilterParmas(is_origin : number = 0) {
}
// 管理端机器列表
export function fetchSysGoodsList(data : {}) {
return request({
url: '/goods/list',
data: data,
method: 'POST'
});
}
// 首页机器列表

View File

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