11
This commit is contained in:
+3
-21
@@ -95,7 +95,7 @@ class WZRYFunction:
|
|||||||
# 需要提取的字段
|
# 需要提取的字段
|
||||||
fields = ["gametime","killcnt","deadcnt","assistcnt","gameresult","mvpcnt","losemvp","mapName",
|
fields = ["gametime","killcnt","deadcnt","assistcnt","gameresult","mvpcnt","losemvp","mapName",
|
||||||
"oldMasterMatchScore","newMasterMatchScore","usedTime","winNum","failNum","roleJobName","stars","desc",
|
"oldMasterMatchScore","newMasterMatchScore","usedTime","winNum","failNum","roleJobName","stars","desc",
|
||||||
"gradeGame","heroIcon"]
|
"gradeGame","heroIcon","godLikeCnt", "firstBlood","hero1TripleKillCnt","hero1UltraKillCnt","hero1RampageCnt"]
|
||||||
# 处理返回数据
|
# 处理返回数据
|
||||||
try:
|
try:
|
||||||
# 获取数据
|
# 获取数据
|
||||||
@@ -110,24 +110,6 @@ class WZRYFunction:
|
|||||||
minutes = m["usedTime"] // 60
|
minutes = m["usedTime"] // 60
|
||||||
seconds = m["usedTime"] % 60
|
seconds = m["usedTime"] % 60
|
||||||
m["time_str"] = f"{minutes}:{seconds:02d}"
|
m["time_str"] = f"{minutes}:{seconds:02d}"
|
||||||
# 可选:提前转义 gameresult
|
|
||||||
if m["gameresult"] == 1:
|
|
||||||
m["gameresult_label"] = "胜利"
|
|
||||||
m["gameresult_bg"] = "#e6fbf1"
|
|
||||||
m["gameresult_color"] = "#056a3a"
|
|
||||||
elif m["gameresult"] == 2:
|
|
||||||
m["gameresult_label"] = "失败"
|
|
||||||
m["gameresult_bg"] = "#fff0f0"
|
|
||||||
m["gameresult_color"] = "#9c1f1f"
|
|
||||||
else:
|
|
||||||
m["gameresult_label"] = "平局"
|
|
||||||
m["gameresult_bg"] = "#eee"
|
|
||||||
m["gameresult_color"] = "#555"
|
|
||||||
m["MVP"] = "混子"
|
|
||||||
if m["mvpcnt"] ==1:
|
|
||||||
m["MVP"] = "胜方MVP"
|
|
||||||
if m["mvpcnt"] ==1:
|
|
||||||
m["MVP"] = "败方MVP"
|
|
||||||
|
|
||||||
return_data["data"] = result
|
return_data["data"] = result
|
||||||
|
|
||||||
@@ -136,7 +118,7 @@ class WZRYFunction:
|
|||||||
return_data["msg"] = "处理接口返回信息时出错"
|
return_data["msg"] = "处理接口返回信息时出错"
|
||||||
# 加载模板
|
# 加载模板
|
||||||
try:
|
try:
|
||||||
return_data["temp"] = load_template("wangzhezhanji.html")
|
return_data["temp"] = load_template("temp_test.html")
|
||||||
except FileNotFoundError as e:
|
except FileNotFoundError as e:
|
||||||
logger.error(f"加载模板失败: {e}")
|
logger.error(f"加载模板失败: {e}")
|
||||||
return_data["msg"] = "系统错误:模板文件不存在"
|
return_data["msg"] = "系统错误:模板文件不存在"
|
||||||
@@ -175,7 +157,7 @@ class WZRYFunction:
|
|||||||
return_data["msg"] = "处理接口返回信息时出错"
|
return_data["msg"] = "处理接口返回信息时出错"
|
||||||
# 加载模板
|
# 加载模板
|
||||||
try:
|
try:
|
||||||
return_data["temp"] = load_template("temp_test.html")
|
return_data["temp"] = load_template("wzry_zl.html")
|
||||||
except FileNotFoundError as e:
|
except FileNotFoundError as e:
|
||||||
logger.error(f"加载模板失败: {e}")
|
logger.error(f"加载模板失败: {e}")
|
||||||
return_data["msg"] = "系统错误:模板文件不存在"
|
return_data["msg"] = "系统错误:模板文件不存在"
|
||||||
|
|||||||
+252
-2
@@ -1,3 +1,253 @@
|
|||||||
<div style="text-align:center; margin-bottom:20px;">
|
<!DOCTYPE html>
|
||||||
<img src="data:image/jpeg;base64,{{ img_base64 }}" style="max-width:100%; border-radius:10px;">
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>王者荣耀 — 对局列表</title>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Microsoft YaHei', Arial, sans-serif;
|
||||||
|
background: #f1f2f6;
|
||||||
|
margin: 0;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 900px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 32px;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
color: #222;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 卡片基础样式 */
|
||||||
|
.match-card {
|
||||||
|
display: flex;
|
||||||
|
border-radius: 18px;
|
||||||
|
padding: 16px;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
position: relative;
|
||||||
|
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 背景色 */
|
||||||
|
.win { background: #e5f4ff; }
|
||||||
|
.lose { background: #ffe9e9; }
|
||||||
|
.draw { background: #f1f2f3; }
|
||||||
|
|
||||||
|
.hero-box img {
|
||||||
|
width: 76px;
|
||||||
|
height: 76px;
|
||||||
|
border-radius: 10px;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-desc {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 8px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
flex: 1;
|
||||||
|
padding-left: 15px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #333;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 右上角标签区域 */
|
||||||
|
.tag-area {
|
||||||
|
position: absolute;
|
||||||
|
right: 16px;
|
||||||
|
top: 16px;
|
||||||
|
display: flex;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MVP 标签 */
|
||||||
|
.mvp-tag-win {
|
||||||
|
background: #b69f1c;
|
||||||
|
color: white;
|
||||||
|
padding: 4px 10px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mvp-tag-lose {
|
||||||
|
background: #888;
|
||||||
|
color: white;
|
||||||
|
padding: 4px 10px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 胜负标签 */
|
||||||
|
.result-tag {
|
||||||
|
padding: 6px 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.win-tag { background: #4a90e2; }
|
||||||
|
.lose-tag { background: #d93939; }
|
||||||
|
.draw-tag { background: #777; }
|
||||||
|
|
||||||
|
/* 对局时间 + 对局类型 */
|
||||||
|
.info-line-time {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #000;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 段位 + 星星 */
|
||||||
|
.rank-stars {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #2ecc71;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* KDA 信息 */
|
||||||
|
.kda-info {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #555;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 巅峰赛积分 */
|
||||||
|
.master-score {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #056a3a;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 评分显示 */
|
||||||
|
.score-badge {
|
||||||
|
position: absolute;
|
||||||
|
right: 16px;
|
||||||
|
bottom: 16px;
|
||||||
|
background: #ffd700;
|
||||||
|
color: #222;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 900;
|
||||||
|
padding: 6px 14px;
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 新增成就标签 - 优化显示 */
|
||||||
|
.achievement-tags {
|
||||||
|
margin-top: 8px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.achievement-tags span {
|
||||||
|
background: rgba(0, 0, 0, 0.6); /* 背景更深 */
|
||||||
|
color: #fff; /* 白色文字 */
|
||||||
|
font-weight: bold; /* 加粗文字 */
|
||||||
|
padding: 6px 10px; /* 内边距更大 */
|
||||||
|
border-radius: 14px; /* 圆角更明显 */
|
||||||
|
font-size: 14px; /* 略大字体 */
|
||||||
|
text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* 文字阴影增强可读性 */
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<h1>王者荣耀 — 对局列表</h1>
|
||||||
|
|
||||||
|
{% for m in data %}
|
||||||
|
|
||||||
|
<div class="match-card
|
||||||
|
{% if m.gameresult == 1 %}win
|
||||||
|
{% elif m.gameresult == 2 %}lose
|
||||||
|
{% else %}draw
|
||||||
|
{% endif %}">
|
||||||
|
|
||||||
|
<div class="hero-box">
|
||||||
|
<img src="{{ m.heroIcon }}">
|
||||||
|
<div class="hero-desc">{{ m.desc }}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<!-- 右上角标签(MVP + 胜负) -->
|
||||||
|
<div class="tag-area">
|
||||||
|
{% if m.mvpcnt == 1 %}
|
||||||
|
<div class="mvp-tag-win">胜方 MVP</div>
|
||||||
|
{% elif m.losemvp == 1 %}
|
||||||
|
<div class="mvp-tag-lose">败方 MVP</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="result-tag
|
||||||
|
{% if m.gameresult == 1 %}win-tag
|
||||||
|
{% elif m.gameresult == 2 %}lose-tag
|
||||||
|
{% else %}draw-tag
|
||||||
|
{% endif %}">
|
||||||
|
{% if m.gameresult == 1 %}胜利
|
||||||
|
{% elif m.gameresult == 2 %}失败
|
||||||
|
{% else %}平局
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 对局时间 + 对局类型 -->
|
||||||
|
<div class="info-line-time">
|
||||||
|
{{ m.gametime }} · {{ m.mapName }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 段位 + 星星 -->
|
||||||
|
<div class="rank-stars">
|
||||||
|
{{ m.roleJobName }} · ⭐{{ m.stars }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 巅峰赛积分(原 KDA 位置) -->
|
||||||
|
<div class="master-score">
|
||||||
|
巅峰赛积分 {{ m.oldMasterMatchScore }} → {{ m.newMasterMatchScore }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- KDA 信息(原巅峰赛位置) -->
|
||||||
|
<div class="kda-info">
|
||||||
|
击杀 {{ m.killcnt }} 死亡 {{ m.deadcnt }} 助攻 {{ m.assistcnt }} 时长 {{ m.time_str }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 新增成就显示 -->
|
||||||
|
<div class="achievement-tags">
|
||||||
|
{% if m.godLikeCnt > 0 %}<span>超神 × {{ m.godLikeCnt }}</span>{% endif %}
|
||||||
|
{% if m.firstBlood > 0 %}<span>一血</span>{% endif %}
|
||||||
|
{% if m.hero1TripleKillCnt > 0 %}<span>三杀 × {{ m.hero1TripleKillCnt }}</span>{% endif %}
|
||||||
|
{% if m.hero1UltraKillCnt > 0 %}<span>四杀 × {{ m.hero1UltraKillCnt }}</span>{% endif %}
|
||||||
|
{% if m.hero1RampageCnt > 0 %}<span>五杀 × {{ m.hero1RampageCnt }}</span>{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 评分放右下角 -->
|
||||||
|
<div class="score-badge">
|
||||||
|
评分 {{ m.gradeGame }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
+222
-51
@@ -1,57 +1,228 @@
|
|||||||
<div style="font-family: 'Microsoft YaHei', Arial, sans-serif; padding:20px; background:#f5f7fa; max-width:900px; margin:0 auto;">
|
<!DOCTYPE html>
|
||||||
<h1 style="text-align:center; font-size:28px; margin-bottom:20px;">王者荣耀 — 对局列表</h1>
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>王者荣耀 — 对局列表</title>
|
||||||
|
|
||||||
<table style="width:100%; border-collapse: collapse; position:relative;">
|
<style>
|
||||||
<tbody>
|
body {
|
||||||
{% for m in data %}
|
font-family: 'Microsoft YaHei', Arial, sans-serif;
|
||||||
<tr style="background:#fff; border-radius:10px; margin-bottom:12px; position:relative;">
|
background: #f1f2f6;
|
||||||
<td style="width:64px; padding:8px; vertical-align:top;">
|
margin: 0;
|
||||||
<img src="{{ m.heroIcon }}" style="width:64px; height:64px; object-fit:cover; border-radius:8px;">
|
padding: 20px;
|
||||||
<!-- 对局描述 -->
|
}
|
||||||
<div style="margin-top:6px; font-size:16px; color:#444; font-weight:bold; text-align:center;">
|
|
||||||
{{ m.desc }}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td style="padding:8px; vertical-align:top; position:relative;">
|
|
||||||
<!-- 胜负+MVP右上角 -->
|
|
||||||
<div style="position:absolute; top:8px; right:8px; display:flex; gap:6px; align-items:center;">
|
|
||||||
<!-- MVP -->
|
|
||||||
<div style="background:#b69f1c; color:#fff; font-weight:bold; padding:4px 8px; border-radius:6px; font-size:12px; box-shadow:0 2px 4px rgba(0,0,0,0.2);">
|
|
||||||
{{ m.MVP }}
|
|
||||||
</div>
|
|
||||||
<!-- 胜负 -->
|
|
||||||
<div style="background: {{ m.gameresult_bg }};
|
|
||||||
color: {{ m.gameresult_color }};
|
|
||||||
padding:6px 10px; border-radius:8px; font-weight:bold; font-size:14px;
|
|
||||||
box-shadow:0 2px 4px rgba(0,0,0,0.1);">
|
|
||||||
{{ m.gameresult_label }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 第一行:时间、地图、角色、星数 -->
|
.container {
|
||||||
<div style="margin-bottom:6px; color:#607785;">
|
max-width: 900px;
|
||||||
{{ m.gametime }} · {{ m.mapName }}<br>
|
margin: 0 auto;
|
||||||
{{ m.roleJobName }} · ⭐{{ m.stars }}
|
}
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 第二行:击杀/死亡/助攻/时长 -->
|
h1 {
|
||||||
<div style="margin-bottom:6px; font-size:14px; color:#333;">
|
text-align: center;
|
||||||
击杀 {{ m.killcnt }} 死亡 {{ m.deadcnt }} 助攻 {{ m.assistcnt }} 时长 {{ m.time_str }}
|
font-size: 32px;
|
||||||
</div>
|
margin-bottom: 25px;
|
||||||
|
color: #222;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
|
||||||
<!-- 第三行:评分 -->
|
/* 卡片基础样式 */
|
||||||
<div style="font-size:15px; color:#000000; font-weight:bold; margin-bottom:6px;">
|
.match-card {
|
||||||
评分 {{ m.gradeGame }}
|
display: flex;
|
||||||
</div>
|
border-radius: 18px;
|
||||||
|
padding: 16px;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
position: relative;
|
||||||
|
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||||
|
}
|
||||||
|
|
||||||
<!-- 隐藏分右下角 -->
|
/* 背景色 */
|
||||||
<div style="position:absolute; bottom:8px; right:8px; font-size:14px; color:#056a3a; font-weight:bold;">
|
.win { background: #e5f4ff; }
|
||||||
巅峰赛积分 {{ m.oldMasterMatchScore }} → {{ m.newMasterMatchScore }}
|
.lose { background: #ffe9e9; }
|
||||||
</div>
|
.draw { background: #f1f2f3; }
|
||||||
</td>
|
|
||||||
</tr>
|
.hero-box img {
|
||||||
<tr style="height:12px;"><td colspan="2"></td></tr> <!-- 间距 -->
|
width: 76px;
|
||||||
{% endfor %}
|
height: 76px;
|
||||||
</tbody>
|
border-radius: 10px;
|
||||||
</table>
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-desc {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 8px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
flex: 1;
|
||||||
|
padding-left: 15px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #333;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 右上角标签区域 */
|
||||||
|
.tag-area {
|
||||||
|
position: absolute;
|
||||||
|
right: 16px;
|
||||||
|
top: 16px;
|
||||||
|
display: flex;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MVP 标签 */
|
||||||
|
.mvp-tag-win {
|
||||||
|
background: #b69f1c;
|
||||||
|
color: white;
|
||||||
|
padding: 4px 10px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mvp-tag-lose {
|
||||||
|
background: #888;
|
||||||
|
color: white;
|
||||||
|
padding: 4px 10px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 胜负标签 */
|
||||||
|
.result-tag {
|
||||||
|
padding: 6px 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.win-tag { background: #4a90e2; }
|
||||||
|
.lose-tag { background: #d93939; }
|
||||||
|
.draw-tag { background: #777; }
|
||||||
|
|
||||||
|
.info-line {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
color: #555;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 巅峰赛积分 */
|
||||||
|
.master-score {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 8px 0;
|
||||||
|
color: #056a3a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 评分显示 */
|
||||||
|
.score-badge {
|
||||||
|
position: absolute;
|
||||||
|
right: 16px;
|
||||||
|
bottom: 16px;
|
||||||
|
background: #ffd700; /* 金黄色背景突出 */
|
||||||
|
color: #222;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 900;
|
||||||
|
padding: 6px 14px;
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 新增成就标签 */
|
||||||
|
.achievement-tags {
|
||||||
|
margin-top: 8px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.achievement-tags span {
|
||||||
|
background: rgba(0,0,0,0.15);
|
||||||
|
color: #fff;
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 12px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<h1>王者荣耀 — 对局列表</h1>
|
||||||
|
|
||||||
|
{% for m in data %}
|
||||||
|
|
||||||
|
<div class="match-card
|
||||||
|
{% if m.gameresult == 1 %}win
|
||||||
|
{% elif m.gameresult == 2 %}lose
|
||||||
|
{% else %}draw
|
||||||
|
{% endif %}">
|
||||||
|
|
||||||
|
<div class="hero-box">
|
||||||
|
<img src="{{ m.heroIcon }}">
|
||||||
|
<div class="hero-desc">{{ m.desc }}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<!-- 右上角标签(MVP + 胜负) -->
|
||||||
|
<div class="tag-area">
|
||||||
|
{% if m.mvpcnt == 1 %}
|
||||||
|
<div class="mvp-tag-win">胜方 MVP</div>
|
||||||
|
{% elif m.losemvp == 1 %}
|
||||||
|
<div class="mvp-tag-lose">败方 MVP</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="result-tag
|
||||||
|
{% if m.gameresult == 1 %}win-tag
|
||||||
|
{% elif m.gameresult == 2 %}lose-tag
|
||||||
|
{% else %}draw-tag
|
||||||
|
{% endif %}">
|
||||||
|
{% if m.gameresult == 1 %}胜利
|
||||||
|
{% elif m.gameresult == 2 %}失败
|
||||||
|
{% else %}平局
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="info-line">
|
||||||
|
{{ m.gametime }} · {{ m.mapName }}<br>
|
||||||
|
{{ m.roleJobName }} · ⭐{{ m.stars }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="info-line">
|
||||||
|
击杀 {{ m.killcnt }} 死亡 {{ m.deadcnt }} 助攻 {{ m.assistcnt }} 时长 {{ m.time_str }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 巅峰赛积分放原评分位置 -->
|
||||||
|
<div class="master-score">
|
||||||
|
巅峰赛积分 {{ m.oldMasterMatchScore }} → {{ m.newMasterMatchScore }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 新增成就显示 -->
|
||||||
|
<div class="achievement-tags">
|
||||||
|
{% if m.godLikeCnt > 0 %}<span>超神 × {{ m.godLikeCnt }}</span>{% endif %}
|
||||||
|
{% if m.firstBlood > 0 %}<span>一血</span>{% endif %}
|
||||||
|
{% if m.hero1TripleKillCnt > 0 %}<span>三杀 × {{ m.hero1TripleKillCnt }}</span>{% endif %}
|
||||||
|
{% if m.hero1UltraKillCnt > 0 %}<span>四杀 × {{ m.hero1UltraKillCnt }}</span>{% endif %}
|
||||||
|
{% if m.hero1RampageCnt > 0 %}<span>五杀 × {{ m.hero1RampageCnt }}</span>{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 评分放右下角 -->
|
||||||
|
<div class="score-badge">
|
||||||
|
评分 {{ m.gradeGame }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<div style="text-align:center; margin-bottom:20px;">
|
||||||
|
<img src="data:image/jpeg;base64,{{ img_base64 }}" style="max-width:100%; border-radius:10px;">
|
||||||
|
</div>
|
||||||
Reference in New Issue
Block a user