...
|
...
|
@@ -343,12 +343,13 @@ const shoes = { |
|
|
|
|
|
let htmlHead = `<table cellpadding="0" cellspacing="0" border="1" width="100%">
|
|
|
<tr style="background-color: #00aeef;">
|
|
|
<td width="15%" height="30px">名次</td>
|
|
|
<td width="15%" height="30px">手机</td>
|
|
|
<td width="15%" height="30px">昵称</td>
|
|
|
<td width="15%" height="30px">得分</td>
|
|
|
<td width="15%" height="30px">时间</td>
|
|
|
<td width="15%" height="30px">userId</td>
|
|
|
<td width="14%" height="30px">名次</td>
|
|
|
<td width="14%" height="30px">手机</td>
|
|
|
<td width="14%" height="30px">昵称</td>
|
|
|
<td width="14%" height="30px">得分</td>
|
|
|
<td width="14%" height="30px">时间</td>
|
|
|
<td width="14%" height="30px">userId</td>
|
|
|
<td width="14%" height="30px">日期</td>
|
|
|
</tr>`;
|
|
|
|
|
|
let innerHtml = '';
|
...
|
...
|
@@ -359,7 +360,8 @@ const shoes = { |
|
|
<td>${item.nickname}</td>
|
|
|
<td>${item.score}</td>
|
|
|
<td>${item.playTime / 1000}s</td>
|
|
|
<td>${item.userId}</td></tr>`;
|
|
|
<td>${item.userId}</td>
|
|
|
<td>${item.createTime}</td></tr>`;
|
|
|
});
|
|
|
|
|
|
let htmlEnd = '</table>';
|
...
|
...
|
|