第一次

This commit is contained in:
PC-202306242200\Administrator
2024-09-10 16:47:49 +08:00
parent 4988491b1c
commit d4720a32e1
419 changed files with 59630 additions and 0 deletions

21
src/services/order.ts Normal file
View File

@@ -0,0 +1,21 @@
import { request } from '@umijs/max';
export async function orderPage(body) {
return request('/admin/orders/page', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body || {},
});
}
export async function orderExport(body) {
return request('/admin/orders/export', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body || {},
});
}