init: 微信支付 Native 页面 (Express + JSON 存储)
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user