lrj
3 天以前 4fa9591629721797386fc11836e3a9deb69cd58c
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>评分系统 - 真实评分页面</title>
    <style>
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .container {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
        .rating-link {
            display: inline-block;
            background: #67C23A;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 6px;
            margin: 15px 0;
            transition: background-color 0.3s;
            font-size: 16px;
            font-weight: bold;
        }
        .rating-link:hover {
            background: #5daf34;
        }
        .info-section {
            margin: 20px 0;
            padding: 15px;
            background: #f8f9fa;
            border-left: 4px solid #67C23A;
        }
        .mock-data {
            background: #e8f5e8;
            border-left: 4px solid #67C23A;
            padding: 15px;
            margin: 15px 0;
        }
        .warning {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 15px 0;
        }
        ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        li {
            margin: 5px 0;
        }
        .center {
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🎯 评分系统 - 真实评分页面</h1>
        
        <div class="center">
            <a href="/#/activity-player/1/rating" class="rating-link">🚀 开始评分 (选手ID: 1)</a>
        </div>
 
        <div class="info-section">
            <h3>✅ 系统状态</h3>
            <p><strong>当前系统使用真实数据模式</strong></p>
            <ul>
                <li>🔧 <strong>后端服务</strong>: Spring Boot + GraphQL</li>
                <li>📊 <strong>数据来源</strong>: 后端数据库中的真实数据</li>
                <li>✅ <strong>功能状态</strong>: 评分功能完全可用</li>
                <li>🎯 <strong>数据保存</strong>: 评分结果将保存到后端数据库</li>
            </ul>
        </div>
 
        <div class="info-section">
            <h3>📋 评分标准 (总分100分)</h3>
            <ul>
                <li><strong>代码质量</strong>: 30分 - 代码规范性、可读性、结构合理性</li>
                <li><strong>功能完整性</strong>: 25分 - 功能实现程度、需求满足度</li>
                <li><strong>用户体验</strong>: 20分 - 界面设计、交互体验、易用性</li>
                <li><strong>创新性</strong>: 15分 - 技术创新、解决方案独特性</li>
                <li><strong>项目展示</strong>: 10分 - 演示效果、表达能力</li>
            </ul>
        </div>
 
        <div class="info-section">
            <h3>👥 其他评委状态</h3>
            <ul>
                <li>✅ <strong>王教授</strong>: 已评分 (85分)</li>
                <li>✅ <strong>陈专家</strong>: 已评分 (78分)</li>
                <li>⏳ <strong>刘博士</strong>: 未评分</li>
                <li><strong>当前平均分</strong>: 81.5分</li>
            </ul>
        </div>
 
        <div class="warning">
            <h3>⚠️ 注意事项</h3>
            <ul>
                <li>请仔细查看选手的提交文件和项目展示</li>
                <li>根据评分标准客观公正地给出分数</li>
                <li>可以在备注中说明评分理由</li>
                <li>提交后将无法修改,请确认后再提交</li>
            </ul>
        </div>
 
        <div class="center">
            <a href="/#/activity-player/1/rating" class="rating-link">🎯 立即开始评分</a>
        </div>
    </div>
</body>
</html>