This commit is contained in:
Leo
2025-11-15 15:15:13 +08:00
parent 0b4d241012
commit 3a40d5f872
3 changed files with 487 additions and 0 deletions

View File

@@ -174,4 +174,13 @@ export function fetchLogisticsManually(data) {
method: 'post',
data
})
}
// 订单搜索工具接口(返回简易字段)
export function searchOrders(query) {
return request({
url: '/system/jdorder/tools/search',
method: 'get',
params: query
})
}