init: 微信支付 Native 页面 (Express + JSON 存储)

This commit is contained in:
2026-07-12 14:44:44 +08:00
commit d46977be14
13 changed files with 2392 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>支付成功</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="container">
<div class="success-card">
<h1>✅ 支付成功</h1>
<div class="order-info">
<p>订单号: <span><%= order.orderId %></span></p>
<p>商品: <span><%= order.productName %></span></p>
<p>金额: <span>¥ <%= (order.totalFee / 100).toFixed(2) %></span></p>
</div>
<a href="/" class="btn">继续购物</a>
</div>
</div>
</body>
</html>