This commit is contained in:
Владимир Фёдоров 2025-06-17 03:17:22 +07:00
parent 7ebae67378
commit ba8b7aaa5d

View File

@ -227,14 +227,14 @@ onMounted(() => {
<td class="team-name">{{ team.name }}
<a :href="team.url" target="_blank">[url]</a>
</td>
<td>{{ team.spendTime }}</td>
<td class="cell-center">{{ team.spendTime }}</td>
<td>
<div v-for="application in team.applications" :key="application.id">
{{ application.name }} <button class="link-button"
@click="gaveApplication(team.id, application.id)">Выдано</button>
</div>
</td>
<td>
<td class="cell-center">
<a v-on:click="qrurl = team.url, qrteam = team.name">QR</a>
</td>
</tr>
@ -400,4 +400,8 @@ a {
.button-container {
margin-bottom: 30px;
}
.cell-center {
text-align: center;
}
</style>