dm-design/H5/merchant/pages/point-tasks.html

45 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>积分任务 - H5</title>
<link rel="stylesheet" href="../css/mobile.css">
</head>
<body>
<div class="page-container">
<!-- 页面头部 -->
<div class="page-header">
<button class="back-btn" onclick="goBack()"></button>
<div class="page-title">积分任务</div>
</div>
<!-- 页面内容 -->
<div class="page-content">
<!-- 添加任务按钮 -->
<button class="btn btn-primary" onclick="addTask()" style="margin-bottom: 15px;">
添加新任务
</button>
<!-- 积分任务列表表格 -->
<table class="simple-table">
<thead>
<tr>
<th>任务名称</th>
<th>奖励积分</th>
<th>任务描述</th>
<th>状态</th>
<th>操作</th>
</tr>
</thead>
<tbody id="task-table-body">
<!-- 数据将通过JavaScript动态填充 -->
</tbody>
</table>
</div>
</div>
<script src="../js/mobile-common.js"></script>
<script src="../js/pages/point-tasks.js"></script>
</body>
</html>