feat: 退款政策接口获取

This commit is contained in:
2026-02-26 19:43:40 +08:00
parent 23eb9dc467
commit 2656c59475
2 changed files with 25 additions and 6 deletions

View File

@@ -188,6 +188,21 @@ class OrderService {
},
);
}
// 获取退款政策
async getRefundPolicy({
order_id,
}: {
order_id: number;
}): Promise<ApiResponse<any>> {
return httpService.post(
"/payment/order_refund_policy",
{ order_id },
{
showLoading: true,
},
);
}
}
// 导出认证服务实例