主要更新: 1. 按H5网页端完全重构匹配功能(match页面) - 4种匹配类型: 创业合伙/资源对接/导师顾问/团队招募 - 资源对接等类型弹出手机号/微信号输入框 - 去掉重新匹配按钮,改为返回按钮 2. 修复所有卡片对齐和宽度问题 - 目录页附录卡片居中 - 首页阅读进度卡片满宽度 - 我的页面菜单卡片对齐 - 推广中心分享卡片统一宽度 3. 修复目录页图标和文字对齐 - section-icon固定40rpx宽高 - section-title与图标垂直居中 4. 更新真实完整文章标题(62篇) - 从book目录读取真实markdown文件名 - 替换之前的简化标题 5. 新增文章数据API - /api/db/chapters - 获取完整书籍结构 - 支持按ID获取单篇文章内容
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
/**
|
|
* 支付验证接口
|
|
* 开发: 卡若
|
|
* 技术支持: 存客宝
|
|
*/
|
|
import { type NextRequest, NextResponse } from "next/server"
|
|
|
|
export async function POST(request: NextRequest) {
|
|
try {
|
|
const body = await request.json()
|
|
const { orderId, paymentMethod, transactionId } = body
|
|
|
|
if (!orderId) {
|
|
return NextResponse.json({ code: 400, message: "缺少订单号" }, { status: 400 })
|
|
}
|
|
|
|
// In production, verify with payment gateway API
|
|
// For now, simulate verification
|
|
console.log("[Karuo] Verifying payment:", { orderId, paymentMethod, transactionId })
|
|
|
|
// Simulate verification delay
|
|
await new Promise((resolve) => setTimeout(resolve, 500))
|
|
|
|
// Mock verification result (95% success rate)
|
|
const isVerified = Math.random() > 0.05
|
|
|
|
if (isVerified) {
|
|
return NextResponse.json({
|
|
code: 0,
|
|
message: "支付验证成功",
|
|
data: {
|
|
orderId,
|
|
status: "completed",
|
|
verifiedAt: new Date().toISOString(),
|
|
},
|
|
})
|
|
} else {
|
|
return NextResponse.json({
|
|
code: 1,
|
|
message: "支付未完成,请稍后再试",
|
|
data: {
|
|
orderId,
|
|
status: "pending",
|
|
},
|
|
})
|
|
}
|
|
} catch (error) {
|
|
console.error("[Karuo] Verify payment error:", error)
|
|
return NextResponse.json({ code: 500, message: "服务器错误" }, { status: 500 })
|
|
}
|
|
}
|