45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
		
			
		
	
	
			45 lines
		
	
	
		
			1.5 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" id="page-title">等级明细</div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- 页面内容 -->
							 | 
						||
| 
								 | 
							
								        <div class="page-content">
							 | 
						||
| 
								 | 
							
								            <!-- 操作按钮 -->
							 | 
						||
| 
								 | 
							
								            <div style="margin-bottom: 15px;">
							 | 
						||
| 
								 | 
							
								                <button class="btn btn-primary" onclick="editLevel()">等级编辑</button>
							 | 
						||
| 
								 | 
							
								                <button class="btn btn-secondary" onclick="submitDetail()">提交</button>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            <!-- 等级明细表格 -->
							 | 
						||
| 
								 | 
							
								            <table class="simple-table">
							 | 
						||
| 
								 | 
							
								                <thead>
							 | 
						||
| 
								 | 
							
								                    <tr>
							 | 
						||
| 
								 | 
							
								                        <th>等级名称</th>
							 | 
						||
| 
								 | 
							
								                        <th>所需成长值</th>
							 | 
						||
| 
								 | 
							
								                        <th>会员人数</th>
							 | 
						||
| 
								 | 
							
								                        <th>会员权益</th>
							 | 
						||
| 
								 | 
							
								                    </tr>
							 | 
						||
| 
								 | 
							
								                </thead>
							 | 
						||
| 
								 | 
							
								                <tbody id="level-detail-table">
							 | 
						||
| 
								 | 
							
								                    <!-- 数据将通过JavaScript动态填充 -->
							 | 
						||
| 
								 | 
							
								                </tbody>
							 | 
						||
| 
								 | 
							
								            </table>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script src="../js/mobile-common.js"></script>
							 | 
						||
| 
								 | 
							
								    <script src="../js/pages/level-detail.js"></script>
							 | 
						||
| 
								 | 
							
								</body>
							 | 
						||
| 
								 | 
							
								</html>
							 |