Fix: fix for api

This commit is contained in:
黄珑 2025-11-08 11:56:33 +08:00
parent adbc087171
commit a8ba59ba88
4 changed files with 16 additions and 6 deletions

View File

@ -45,6 +45,16 @@ export async function ordercontrollerCreatenote(
});
}
/** 此处后端没有提供注释 GET /order/excel/price */
export async function ordercontrollerGetorderspriceinexcel(options?: {
[key: string]: any;
}) {
return request<any>('/order/excel/price', {
method: 'GET',
...(options || {}),
});
}
/** 此处后端没有提供注释 POST /order/getOrderByNumber */
export async function ordercontrollerGetorderbynumber(
body: string,

View File

@ -334,9 +334,9 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund'
| 'refund_requested'
| 'refund_approved'
| 'refund_cancelled';
| 'return-requested'
| 'return-approved'
| 'return-cancelled';
payment_method?: string;
};
@ -863,9 +863,9 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund'
| 'refund_requested'
| 'refund_approved'
| 'refund_cancelled';
| 'return-requested'
| 'return-approved'
| 'return-cancelled';
payment_method?: string;
};