Таблица

This commit is contained in:
2026-01-31 20:01:39 +10:00
parent 836665f1ed
commit 80ba2168d0

View File

@@ -102,6 +102,8 @@
<tr> <tr>
<th class="px-2 py-2 text-left">Status</th> <th class="px-2 py-2 text-left">Status</th>
<th class="px-2 py-2 text-left">Source URL</th> <th class="px-2 py-2 text-left">Source URL</th>
<th class="px-2 py-2 text-left">Time start</th>
<th class="px-2 py-2 text-left">Time finish</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -116,6 +118,17 @@
> >
{{ task.source_url }} {{ task.source_url }}
</td> </td>
<td
class="px-2 py-2 whitespace-nowrap overflow-hidden overflow-ellipsis max-w-full"
>
{{ task.created_at }}
</td>
<td
class="px-2 py-2 whitespace-nowrap overflow-hidden overflow-ellipsis max-w-full"
>
{{ task.finished_at }}
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@@ -180,11 +193,8 @@ const loadTasks = async () => {
// Загрузка настроек при монтировании // Загрузка настроек при монтировании
onMounted(() => { onMounted(() => {
loadSettings(); loadSettings();
// load_log();
}); });
// watch(logs, load_log);
// Получение настроек с сервера // Получение настроек с сервера
const loadSettings = async () => { const loadSettings = async () => {
try { try {