- 将订单列表页取消订单API调用从 改为 - 统一订单详情页和订单列表页的取消订单API路径为带横杠的 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
@@ -28,7 +28,7 @@ export default function OrderButtonBar({ order, onViewDetail, onCancelOrder }: O
// 取消订单mutation
const cancelOrderMutation = useMutation({
mutationFn: async ({ orderId, reason }: { orderId: number; reason: string }) => {
- const response = await orderClient.cancelOrder.$post({
+ const response = await orderClient['cancel-order'].$post({
json: {
orderId,
reason