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