chenyc
2025-12-09 b38f8abd8a9865148792f4bc996c461211b88561
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta name="apple-mobile-web-app-title" content="企业微信授权登录">
    <title>企业微信授权登录</title>
</head>
<body>
    <div class="container">
        <!-- 头部信息卡片 -->
        <div class="header-card">
            <div class="avatar-container">
                <div class="avatar">头像</div>
            </div>
            <h1 class="company-name">张三</h1>
            <p class="company-info">胜选医疗科技有限公司</p>
        </div>
 
        <!-- 主要内容区域 -->
        <div class="main-content">
            <!-- 手机号输入 -->
            <div class="form-group">
                <label for="phone" class="form-label">您的手机号</label>
                <input 
                    type="tel" 
                    id="phone" 
                    class="form-input" 
                    placeholder="请输入手机号"
                    maxlength="11"
                >
            </div>
 
            <!-- 验证码获取 -->
            <div class="code-section">
                <span class="code-prompt">已申请 <span id="code-count">0</span> / 5 次</span>
                <button class="btn-primary" id="getCodeBtn">获取管理员密码</button>
                <p class="code-tips">每个手机号最多只能申请5次管理员密码,密码72小时后自动失效。</p>
            </div>
 
            <!-- 历史申请记录 -->
            <div class="history-section">
                <h3 class="history-title">历史申请密码</h3>
                <div class="history-table-container">
                    <table class="history-table">
                        <thead>
                            <tr>
                                <th>密码</th>
                                <th>申请时间</th>
                                <th>有效期至</th>
                                <th>剩余时间</th>
                                <th>操作</th>
                            </tr>
                        </thead>
                        <tbody id="historyBody">
                            <tr class="empty-row">
                                <td colspan="5">暂无记录</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
 
    <script type="module" src="/src/main.js"></script>
</body>
</html>