处理订单列表

This commit is contained in:
2026-01-16 02:04:09 +08:00
parent 1364fb2446
commit ff07af055f
45 changed files with 665 additions and 1772 deletions

View File

@@ -108,3 +108,12 @@ export function fetchAddTodo(data : {}) {
method: 'POST'
});
}
// 待办列表
export function fetchOrderList(data : {}) {
return request({
url: '/index/orders',
data: data,
method: 'POST'
});
}