订单结算修改

This commit is contained in:
2025-11-11 18:27:56 +08:00
parent e8c93e8ddb
commit 378cddb582
28 changed files with 7664 additions and 5613 deletions

View File

@@ -1,5 +1,6 @@
import http from './http.js'
const request = http.request
import {orderUrl} from './prveUrl.js'
/**
* 查询订单
@@ -49,7 +50,7 @@ export function createOrder(data, urlType = 'order') {
*/
export function tbOrderInfoDetail(id) {
return request({
url: `/api/tbOrderInfo/${id}`,
url: orderUrl+ `/admin/order/historyOrder?orderId=${id}`,
method: "get"
});
}