feat: 代客下单修改,订单列表详情退款修改

This commit is contained in:
2025-03-05 13:39:06 +08:00
parent a7b7c1cd7e
commit ed9a3335c8
8 changed files with 195 additions and 100 deletions

View File

@@ -6,7 +6,7 @@ const Api = {
calcOrderUsablePoints(params: any) {
return request<any>({
url: `${baseURL}/member-points/calc-usable-points`,
url: `${baseURL}/memberPoints/calcUsablePoints`,
method: "get",
params
});
@@ -14,7 +14,7 @@ const Api = {
// 004-根据抵扣金额计算所需积分
calcMoneyUsablePoints(params: any) {
return request<any>({
url: `${baseURL}/member-points/calc-used-points`,
url: `${baseURL}/memberPoints/calcUsedPoints`,
method: "get",
params
});
@@ -22,7 +22,7 @@ const Api = {
// 003-根据积分计算可抵扣金额
calcPointsToMoney(params: any) {
return request<any>({
url: `${baseURL}/member-points/calc-deduction-amount`,
url: `${baseURL}/memberPoints/calcDeductionAmount`,
method: "get",
params
});