Skip to content

Commit

Permalink
adjest style for god
Browse files Browse the repository at this point in the history
  • Loading branch information
yc97463 committed Jul 23, 2023
1 parent 30029c6 commit 6ca4ea2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,23 @@
<template v-else-if="mode === 'god'">
<div style="margin: 0 auto">
<div style="display: inline-block; margin-right: 24px">
<p>解題狀況</p>
<p>👀 解題狀況</p>
<table>
<tr v-for="( item, index ) in problems " :key="'pro' + index">
<td>{{ "" + (index + 1) + "" + (item.keyword ? "" + item.keyword : "") }}</td>
<td>{{ "" + (index + 1) + "" }}</td>
<td></td>
<td>{{ item.solved_team.length }}</td>
<td align="left"><code>{{ (item.keyword ? item.keyword : "") }}</code></td>
<td>{{ item.solved_team.length }} 組</td>
</tr>
</table>
</div>
<div style="display: inline-block; margin-left: 24px">
<p>各組解題狀況</p>
<p>🔍 各組解題狀況</p>
<table style="margin: 0 auto">
<tr v-for="( value, key ) in groupProblem " :key="key">
<td>{{ key }}</td>
<td></td>
<td>{{ value }}</td>
<td width="20" align="right"></td>
<td>{{ value }}</td>
</tr>
</table>
</div>
Expand Down

0 comments on commit 6ca4ea2

Please sign in to comment.