处理运营订单列表

This commit is contained in:
2026-01-16 04:46:57 +08:00
parent 74679328e9
commit 15d5dc5255
13 changed files with 624 additions and 73 deletions

View File

@@ -109,11 +109,20 @@ export function fetchAddTodo(data : {}) {
});
}
// 待办列表
// 订单列表
export function fetchOrderList(data : {}) {
return request({
url: '/index/orders',
data: data,
method: 'POST'
});
}
// 订单列表
export function fetchDayOrderList(data : {}) {
return request({
url: '/index/dayOrder',
data: data,
method: 'POST'
});
}