Внесение правок и перенос выгрузки
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -74,7 +74,7 @@
|
||||
|
||||
<!-- Список источников -->
|
||||
<div class="p-4 grid gap-2 grid-cols-1 xl:grid-cols-2 2xl:grid-cols-3">
|
||||
<div v-for="source in filteredSources" :key="source.url" class="mb-4">
|
||||
<div v-for="source in filteredSources" :key="source.url" class="mb-4 hover:-translate-y-2 hover:shadow-2xl transition">
|
||||
<Istochnik_one_kard
|
||||
:source="source"
|
||||
@sourceStarted="handleSourceStarted"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div
|
||||
class="flex flex-col sm:flex-row justify-between w-full lg:w-auto gap-2 p-2 bg-gray-100 shadow dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-600"
|
||||
class="flex flex-col sm:flex-row justify-between w-full lg:w-auto gap-2 p-2 bg-white shadow dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-600"
|
||||
>
|
||||
<dev class="">
|
||||
<input
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div class="w-full sm:w-4/5 dark:text-neutral-300">
|
||||
<div class="bg-white flex justify-between p-3 lg:p-5 dark:bg-gray-800">
|
||||
<div class="bg-white p-3 lg:p-5 dark:bg-gray-800">
|
||||
<div class="flex justify-between">
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="relative">
|
||||
<img
|
||||
@@ -37,9 +38,15 @@
|
||||
<option value="bilutene">Билутень</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<Time />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="dark:bg-gray-800 bg-white p-3 hidden lg:block">
|
||||
<div class="mx-2 p-3 bg-gray-100 dark:bg-gray-700 rounded-xl border border-gray-200 dark:border-gray-600">
|
||||
<Setings_downloads />
|
||||
</div>
|
||||
</div>
|
||||
<div ref="scrollContainer" class="p-4">
|
||||
<Stat
|
||||
v-for="item in items"
|
||||
@@ -81,7 +88,7 @@ import { ref, onMounted, onUnmounted, watch, nextTick } from "vue";
|
||||
import Stat from "./One_kard.vue";
|
||||
import Time from "./Time.vue";
|
||||
import axios from "axios";
|
||||
|
||||
import Setings_downloads from "../Settings_section/Setings_downloads.vue";
|
||||
const props = defineProps({
|
||||
filter: { type: String, default: "all" },
|
||||
});
|
||||
|
||||
@@ -137,9 +137,12 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="dark:bg-gray-800 mt-5 sm:m-5 bg-white p-4 hover:-translate-y-2 hover:shadow-2xl border-slate-100 rounded-xl transition"
|
||||
>
|
||||
<Setings_downloads />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
<template>
|
||||
<div
|
||||
class="dark:bg-gray-800 mt-5 sm:m-5 bg-white p-4 hover:-translate-y-2 hover:shadow-2xl border-slate-100 rounded-xl transition"
|
||||
>
|
||||
<div class="flex flex-wrap items-center gap-2 w-full justify-between">
|
||||
<!-- Поля ввода дат в одной строке -->
|
||||
<div class="flex flex-col lg:flex-row items-center gap-2 flex-grow">
|
||||
@@ -14,7 +11,7 @@
|
||||
<select
|
||||
v-model="selectedFilter"
|
||||
@change="onfilterItems($event.target.value)"
|
||||
class="dark:bg-gray-900 border-slate-100 shadow rounded-xl h-12 p-3 mt-3 lg:mt-0 lg:ml-4 w-full lg:w-auto flex-shrink-0 "
|
||||
class="dark:bg-gray-900 border-slate-100 shadow rounded-xl h-12 p-3 mt-3 lg:mt-0 lg:ml-4 w-full lg:w-auto flex-shrink-0 cursor-pointer"
|
||||
>
|
||||
<option value="status">Избранные</option>
|
||||
<option value="tematik">Тематическая</option>
|
||||
@@ -32,7 +29,6 @@
|
||||
Выгрузить
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
Reference in New Issue
Block a user