mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 23:56:42 +08:00
fix
This commit is contained in:
@@ -64,7 +64,7 @@ const resourceSearch = ref('')
|
|||||||
const resourceLoading = ref(false)
|
const resourceLoading = ref(false)
|
||||||
|
|
||||||
// 总条数
|
// 总条数
|
||||||
const resourceTotalItems = ref(1000)
|
const resourceTotalItems = ref(25)
|
||||||
|
|
||||||
// 每页条数
|
// 每页条数
|
||||||
const resourceItemsPerPage = ref(100)
|
const resourceItemsPerPage = ref(100)
|
||||||
@@ -557,7 +557,7 @@ onMounted(() => {
|
|||||||
<!-- 站点资源弹窗 -->
|
<!-- 站点资源弹窗 -->
|
||||||
<VDialog
|
<VDialog
|
||||||
v-model="resourceDialog"
|
v-model="resourceDialog"
|
||||||
max-width="1600"
|
max-width="1000"
|
||||||
scrollable
|
scrollable
|
||||||
>
|
>
|
||||||
<!-- Dialog Content -->
|
<!-- Dialog Content -->
|
||||||
@@ -580,7 +580,9 @@ onMounted(() => {
|
|||||||
>
|
>
|
||||||
<template #item.title="{ item }">
|
<template #item.title="{ item }">
|
||||||
<div>{{ item.raw.title }}</div>
|
<div>{{ item.raw.title }}</div>
|
||||||
<div><small>{{ item.raw.description }}</small></div>
|
<div class="text-sm">
|
||||||
|
{{ item.raw.description }}
|
||||||
|
</div>
|
||||||
<VChip
|
<VChip
|
||||||
v-for="(label, index) in item.raw?.labels"
|
v-for="(label, index) in item.raw?.labels"
|
||||||
:key="index"
|
:key="index"
|
||||||
@@ -594,7 +596,9 @@ onMounted(() => {
|
|||||||
</template>
|
</template>
|
||||||
<template #item.pubdate="{ item }">
|
<template #item.pubdate="{ item }">
|
||||||
<div>{{ item.raw.date_elapsed }}</div>
|
<div>{{ item.raw.date_elapsed }}</div>
|
||||||
<div><small>{{ item.raw.pubdate }}</small></div>
|
<div class="text-sm">
|
||||||
|
{{ item.raw.pubdate }}
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template #item.size="{ item }">
|
<template #item.size="{ item }">
|
||||||
<div>{{ formatFileSize(item.raw.size) }}</div>
|
<div>{{ formatFileSize(item.raw.size) }}</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user