2025-07-11 00:49:41 +08:00
|
|
|
|
<template>
|
2025-07-23 18:42:24 +08:00
|
|
|
|
<div v-if="!systemConfig.maintenance_mode" class="min-h-screen bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-gray-100 flex flex-col">
|
2025-07-11 02:30:57 +08:00
|
|
|
|
<!-- 全局加载状态 -->
|
|
|
|
|
|
<div v-if="pageLoading" class="fixed inset-0 bg-gray-900 bg-opacity-50 flex items-center justify-center z-50">
|
|
|
|
|
|
<div class="bg-white dark:bg-gray-800 rounded-lg p-8 shadow-xl">
|
|
|
|
|
|
<div class="flex flex-col items-center space-y-4">
|
|
|
|
|
|
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
|
|
<h3 class="text-lg font-semibold text-gray-900 dark:text-gray-100">正在加载...</h3>
|
|
|
|
|
|
<p class="text-sm text-gray-600 dark:text-gray-400 mt-1">请稍候,正在初始化系统</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<!-- 主要内容区域 -->
|
|
|
|
|
|
<div class="flex-1 p-3 sm:p-5">
|
|
|
|
|
|
<div class="max-w-7xl mx-auto">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<!-- 头部 -->
|
2025-07-25 18:22:35 +08:00
|
|
|
|
<div class="header-container bg-slate-800 dark:bg-gray-800 text-white dark:text-gray-100 rounded-lg shadow-lg p-4 sm:p-8 mb-4 sm:mb-8 text-center relative">
|
2025-08-18 15:08:49 +08:00
|
|
|
|
<h1 class="text-2xl sm:text-3xl font-bold mb-4 flex items-center justify-center gap-3">
|
|
|
|
|
|
<img
|
|
|
|
|
|
v-if="systemConfig?.site_logo"
|
|
|
|
|
|
:src="getImageUrl(systemConfig.site_logo)"
|
|
|
|
|
|
:alt="systemConfig?.site_title || 'Logo'"
|
|
|
|
|
|
class="h-8 w-auto object-contain"
|
|
|
|
|
|
@error="handleLogoError"
|
|
|
|
|
|
/>
|
2025-07-11 02:30:57 +08:00
|
|
|
|
<a href="/" class="text-white hover:text-gray-200 dark:hover:text-gray-300 no-underline">
|
2025-07-21 00:43:07 +08:00
|
|
|
|
{{ systemConfig?.site_title || '老九网盘资源数据库' }}
|
2025-07-11 02:30:57 +08:00
|
|
|
|
</a>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</h1>
|
2025-07-20 21:56:00 +08:00
|
|
|
|
|
2025-07-16 18:05:29 +08:00
|
|
|
|
<nav class="mt-4 flex flex-col sm:flex-row justify-center gap-2 sm:gap-2 right-4 top-0 absolute">
|
|
|
|
|
|
<NuxtLink to="/hot-dramas" class="hidden sm:flex">
|
|
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-film text-xs"></i> 热播剧
|
|
|
|
|
|
</n-button>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
</NuxtLink>
|
2025-07-16 18:05:29 +08:00
|
|
|
|
<NuxtLink to="/monitor" class="hidden sm:flex">
|
|
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-chart-line text-xs"></i> 系统监控
|
|
|
|
|
|
</n-button>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
</NuxtLink>
|
2025-07-16 18:05:29 +08:00
|
|
|
|
<NuxtLink to="/api-docs" class="hidden sm:flex">
|
|
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-book text-xs"></i> API文档
|
|
|
|
|
|
</n-button>
|
2025-07-10 21:14:17 +08:00
|
|
|
|
</NuxtLink>
|
2025-07-16 18:05:29 +08:00
|
|
|
|
<NuxtLink v-if="authInitialized && !userStore.isAuthenticated" to="/login" class="sm:flex">
|
|
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-sign-in-alt text-xs"></i> 登录
|
|
|
|
|
|
</n-button>
|
|
|
|
|
|
</NuxtLink>
|
2025-08-06 09:59:34 +08:00
|
|
|
|
<NuxtLink v-if="authInitialized && userStore.isAuthenticated && userStore.user?.role === 'admin'" to="/admin" class="hidden sm:flex">
|
2025-07-16 18:05:29 +08:00
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-user-shield text-xs"></i> 管理后台
|
|
|
|
|
|
</n-button>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</NuxtLink>
|
2025-08-06 09:59:34 +08:00
|
|
|
|
<NuxtLink v-if="authInitialized && userStore.isAuthenticated && userStore.user?.role !== 'admin'" to="/user" class="hidden sm:flex">
|
|
|
|
|
|
<n-button size="tiny" type="tertiary" round ghost class="!px-2 !py-1 !text-xs !text-white dark:!text-white !border-white/30 hover:!border-white">
|
|
|
|
|
|
<i class="fas fa-user text-xs"></i> 用户中心
|
|
|
|
|
|
</n-button>
|
|
|
|
|
|
</NuxtLink>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</nav>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<!-- 搜索区域 -->
|
|
|
|
|
|
<div class="w-full max-w-3xl mx-auto mb-4 sm:mb-8 px-2 sm:px-0">
|
2025-07-21 22:52:41 +08:00
|
|
|
|
<ClientOnly>
|
|
|
|
|
|
<div class="relative">
|
2025-08-18 15:08:49 +08:00
|
|
|
|
<n-input round placeholder="搜索" v-model:value="searchQuery" @blur="handleSearch" @keyup.enter="handleSearch" clearable>
|
|
|
|
|
|
<template #prefix>
|
2025-07-21 22:52:41 +08:00
|
|
|
|
<i class="fas fa-search text-gray-400"></i>
|
2025-08-04 14:18:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</n-input>
|
2025-07-21 22:52:41 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</ClientOnly>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<!-- 平台类型筛选 -->
|
|
|
|
|
|
<div class="mt-3 flex flex-wrap gap-2" id="platformFilters">
|
2025-08-04 14:18:45 +08:00
|
|
|
|
<a
|
|
|
|
|
|
:href="`/?search=${$route.query.search || ''}&platform=`"
|
|
|
|
|
|
class="px-2 py-1 text-xs rounded-full bg-slate-800 dark:bg-gray-700 text-white dark:text-gray-100 hover:bg-slate-700 dark:hover:bg-gray-600 transition-colors"
|
|
|
|
|
|
:class="{ 'active-filter': !selectedPlatform }"
|
2025-07-10 13:58:28 +08:00
|
|
|
|
>
|
|
|
|
|
|
全部
|
2025-08-04 14:18:45 +08:00
|
|
|
|
</a>
|
|
|
|
|
|
<a
|
2025-07-10 13:58:28 +08:00
|
|
|
|
v-for="platform in platforms"
|
|
|
|
|
|
:key="platform.id"
|
2025-08-04 14:18:45 +08:00
|
|
|
|
:href="`/?search=${$route.query.search || ''}&platform=${platform.id}`"
|
2025-07-11 00:49:41 +08:00
|
|
|
|
class="px-2 py-1 text-xs rounded-full bg-gray-200 dark:bg-gray-800 text-gray-800 dark:text-gray-100 hover:bg-gray-300 dark:hover:bg-gray-700 transition-colors"
|
2025-08-04 14:18:45 +08:00
|
|
|
|
:class="{ 'active-filter': selectedPlatform === platform.id }"
|
2025-07-10 13:58:28 +08:00
|
|
|
|
>
|
2025-07-20 11:00:17 +08:00
|
|
|
|
<span v-html="platform.icon"></span> {{ platform.name }}
|
2025-08-04 14:18:45 +08:00
|
|
|
|
</a>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<!-- 统计信息 -->
|
2025-07-11 00:49:41 +08:00
|
|
|
|
<div class="flex justify-between mt-3 text-sm text-gray-600 dark:text-gray-300 px-2">
|
2025-07-10 01:27:35 +08:00
|
|
|
|
<div class="flex items-center">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<i class="fas fa-calendar-day text-pink-600 mr-1"></i>
|
2025-08-11 01:34:07 +08:00
|
|
|
|
今日资源: <span class="font-medium text-pink-600 ml-1 count-up" :data-target="safeStats?.today_resources || 0">0</span>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<i class="fas fa-database text-blue-600 mr-1"></i>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
总资源数: <span class="font-medium text-blue-600 ml-1 count-up" :data-target="safeStats?.total_resources || 0">0</span>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 资源列表 -->
|
2025-07-11 00:49:41 +08:00
|
|
|
|
<div class="overflow-x-auto bg-white dark:bg-gray-800 rounded-lg shadow">
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<table class="w-full min-w-full">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<thead>
|
2025-07-11 00:49:41 +08:00
|
|
|
|
<tr class="bg-slate-800 dark:bg-gray-700 text-white dark:text-gray-100">
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<th class="px-2 sm:px-6 py-3 sm:py-4 text-left text-xs sm:text-sm">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
|
<i class="fas fa-cloud mr-1 text-gray-300"></i> 文件名
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</th>
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<th class="px-2 sm:px-6 py-3 sm:py-4 text-left text-xs sm:text-sm hidden sm:table-cell w-24">链接</th>
|
|
|
|
|
|
<th class="px-2 sm:px-6 py-3 sm:py-4 text-left text-xs sm:text-sm hidden sm:table-cell w-32">更新时间</th>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody class="divide-y divide-gray-200">
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<tr v-if="safeLoading" class="text-center py-8">
|
2025-07-16 01:09:35 +08:00
|
|
|
|
<td colspan="1" class="text-gray-500 dark:text-gray-400 sm:hidden">
|
|
|
|
|
|
<i class="fas fa-spinner fa-spin mr-2"></i>加载中...
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td colspan="3" class="text-gray-500 dark:text-gray-400 hidden sm:table-cell">
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<i class="fas fa-spinner fa-spin mr-2"></i>加载中...
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<tr v-else-if="safeResources.length === 0" class="text-center py-8">
|
2025-07-16 01:09:35 +08:00
|
|
|
|
<td colspan="1" class="text-gray-500 dark:text-gray-400 sm:hidden">暂无数据</td>
|
|
|
|
|
|
<td colspan="3" class="text-gray-500 dark:text-gray-400 hidden sm:table-cell">暂无数据</td>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</tr>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<tr
|
2025-07-20 11:00:17 +08:00
|
|
|
|
v-for="(resource, index) in safeResources"
|
2025-07-11 17:45:16 +08:00
|
|
|
|
:key="resource.id"
|
|
|
|
|
|
:class="isUpdatedToday(resource.updated_at) ? 'hover:bg-pink-50 dark:hover:bg-pink-900 bg-pink-50/30 dark:bg-pink-900/30' : 'hover:bg-gray-50 dark:hover:bg-gray-800'"
|
|
|
|
|
|
:data-index="index"
|
|
|
|
|
|
>
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<td class="px-2 sm:px-6 py-2 sm:py-4 text-xs sm:text-sm">
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<div class="flex items-start">
|
2025-07-20 11:00:17 +08:00
|
|
|
|
<span class="mr-2 flex-shrink-0" v-html="getPlatformIcon(resource.pan_id || 0)"></span>
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<div class="flex-1 min-w-0">
|
|
|
|
|
|
<div class="break-words font-medium">{{ resource.title }}</div>
|
|
|
|
|
|
<!-- 显示描述 -->
|
|
|
|
|
|
<div v-if="resource.description" class="text-xs text-gray-600 dark:text-gray-400 mt-1 break-words line-clamp-2">
|
|
|
|
|
|
{{ resource.description }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
</div>
|
2025-07-16 01:09:35 +08:00
|
|
|
|
<div class="sm:hidden mt-1 space-y-1">
|
|
|
|
|
|
<!-- 移动端显示更新时间 -->
|
|
|
|
|
|
<div class="text-xs text-gray-500" :title="resource.updated_at">
|
|
|
|
|
|
<span v-html="formatRelativeTime(resource.updated_at)"></span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 移动端显示链接按钮 -->
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<button
|
|
|
|
|
|
class="text-blue-600 hover:text-blue-800 text-xs flex items-center gap-1 show-link-btn"
|
|
|
|
|
|
@click="toggleLink(resource)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<i class="fas fa-eye"></i> 显示链接
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</td>
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<td class="px-2 sm:px-6 py-2 sm:py-4 text-xs sm:text-sm hidden sm:table-cell w-32">
|
2025-07-11 17:45:16 +08:00
|
|
|
|
<button
|
|
|
|
|
|
class="text-blue-600 hover:text-blue-800 flex items-center gap-1 show-link-btn"
|
|
|
|
|
|
@click="toggleLink(resource)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<i class="fas fa-eye"></i> 显示链接
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</td>
|
2025-08-13 15:22:01 +08:00
|
|
|
|
<td class="px-2 sm:px-6 py-2 sm:py-4 text-xs sm:text-sm text-gray-500 hidden sm:table-cell w-32" :title="resource.updated_at">
|
2025-07-15 12:50:24 +08:00
|
|
|
|
<span v-html="formatRelativeTime(resource.updated_at)"></span>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
2025-07-11 17:45:16 +08:00
|
|
|
|
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
|
|
|
|
|
</div>
|
2025-08-04 14:18:45 +08:00
|
|
|
|
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-07-11 17:45:16 +08:00
|
|
|
|
</div>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
|
2025-07-16 01:09:35 +08:00
|
|
|
|
<!-- 二维码模态框 -->
|
|
|
|
|
|
<QrCodeModal
|
2025-07-20 11:00:17 +08:00
|
|
|
|
:visible="showLinkModal"
|
|
|
|
|
|
:url="selectedResource?.url"
|
2025-08-06 18:17:32 +08:00
|
|
|
|
:save_url="selectedResource?.save_url"
|
2025-08-09 09:51:55 +08:00
|
|
|
|
:loading="selectedResource?.loading"
|
|
|
|
|
|
:linkType="selectedResource?.linkType"
|
|
|
|
|
|
:platform="selectedResource?.platform"
|
|
|
|
|
|
:message="selectedResource?.message"
|
|
|
|
|
|
:error="selectedResource?.error"
|
2025-07-20 11:00:17 +08:00
|
|
|
|
@close="showLinkModal = false"
|
2025-07-16 01:09:35 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
<!-- 页脚 -->
|
2025-07-20 21:56:00 +08:00
|
|
|
|
<AppFooter />
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</div>
|
2025-07-23 18:42:24 +08:00
|
|
|
|
<div v-if="systemConfig.maintenance_mode" class="fixed inset-0 z-[1000000] flex items-center justify-center bg-gradient-to-br from-yellow-100/80 via-gray-900/90 to-yellow-200/80 backdrop-blur-sm">
|
|
|
|
|
|
<div class="bg-white dark:bg-gray-800 rounded-3xl shadow-2xl px-8 py-10 flex flex-col items-center max-w-xs w-full border border-yellow-200 dark:border-yellow-700">
|
|
|
|
|
|
<i class="fas fa-tools text-yellow-500 text-5xl mb-6 animate-bounce-slow"></i>
|
|
|
|
|
|
<h3 class="text-2xl font-extrabold text-yellow-600 dark:text-yellow-400 mb-2 tracking-wide drop-shadow">系统维护中</h3>
|
|
|
|
|
|
<p class="text-base text-gray-600 dark:text-gray-300 mb-6 text-center leading-relaxed">
|
|
|
|
|
|
我们正在进行系统升级和维护,预计很快恢复服务。<br>
|
|
|
|
|
|
请稍后再试,感谢您的理解与支持!
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<!-- 动态点点动画 -->
|
|
|
|
|
|
<div class="flex space-x-1 mt-2">
|
|
|
|
|
|
<span class="w-2 h-2 bg-yellow-400 rounded-full animate-blink"></span>
|
|
|
|
|
|
<span class="w-2 h-2 bg-yellow-500 rounded-full animate-blink delay-200"></span>
|
|
|
|
|
|
<span class="w-2 h-2 bg-yellow-600 rounded-full animate-blink delay-400"></span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 页面元数据
|
|
|
|
|
|
useHead({
|
2025-07-21 00:43:07 +08:00
|
|
|
|
title: '老九网盘资源数据库 - 首页',
|
2025-07-11 02:30:57 +08:00
|
|
|
|
meta: [
|
2025-07-21 00:43:07 +08:00
|
|
|
|
{ name: 'description', content: '老九网盘资源管理系统, 一个现代化的网盘资源数据库,支持多网盘自动化转存分享,支持百度网盘,阿里云盘,夸克网盘, 天翼云盘,迅雷云盘,123云盘,115网盘,UC网盘' },
|
2025-07-20 11:00:17 +08:00
|
|
|
|
{ name: 'keywords', content: '网盘资源,资源管理,数据库' }
|
2025-07-11 02:30:57 +08:00
|
|
|
|
]
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 获取运行时配置
|
|
|
|
|
|
const config = useRuntimeConfig()
|
2025-07-10 13:58:28 +08:00
|
|
|
|
|
2025-08-14 09:46:13 +08:00
|
|
|
|
import { useResourceApi, useStatsApi, usePanApi, useSystemConfigApi, usePublicSystemConfigApi, useSearchStatsApi } from '~/composables/useApi'
|
2025-07-20 21:56:00 +08:00
|
|
|
|
|
2025-07-21 21:24:50 +08:00
|
|
|
|
const resourceApi = useResourceApi()
|
|
|
|
|
|
const statsApi = useStatsApi()
|
|
|
|
|
|
const panApi = usePanApi()
|
2025-07-21 22:52:41 +08:00
|
|
|
|
const publicSystemConfigApi = usePublicSystemConfigApi()
|
2025-07-20 21:56:00 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 获取路由参数
|
|
|
|
|
|
const route = useRoute()
|
|
|
|
|
|
const router = useRouter()
|
2025-07-11 02:30:57 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 响应式数据
|
|
|
|
|
|
const showLinkModal = ref(false)
|
|
|
|
|
|
const selectedResource = ref<any>(null)
|
2025-07-30 17:33:36 +08:00
|
|
|
|
const authInitialized = ref(true) // 在app.vue中已经初始化,这里直接设为true
|
2025-07-20 11:00:17 +08:00
|
|
|
|
const pageLoading = ref(false)
|
|
|
|
|
|
|
2025-07-30 17:33:36 +08:00
|
|
|
|
// 用户状态管理
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
|
|
2025-08-18 15:08:49 +08:00
|
|
|
|
// 图片URL处理
|
|
|
|
|
|
const { getImageUrl } = useImageUrl()
|
|
|
|
|
|
|
|
|
|
|
|
// Logo错误处理
|
|
|
|
|
|
const handleLogoError = (event: Event) => {
|
|
|
|
|
|
const img = event.target as HTMLImageElement
|
|
|
|
|
|
img.style.display = 'none'
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 使用 useAsyncData 获取资源数据
|
|
|
|
|
|
const { data: resourcesData, pending, refresh } = await useAsyncData(
|
2025-08-04 14:18:45 +08:00
|
|
|
|
() => `resources-1-${route.query.search || ''}-${route.query.platform || ''}`,
|
2025-07-21 21:24:50 +08:00
|
|
|
|
() => resourceApi.getResources({
|
2025-08-04 14:18:45 +08:00
|
|
|
|
page: 1,
|
|
|
|
|
|
page_size: 200,
|
|
|
|
|
|
search: route.query.search as string || '',
|
|
|
|
|
|
pan_id: route.query.platform as string || ''
|
2025-07-20 11:00:17 +08:00
|
|
|
|
})
|
|
|
|
|
|
)
|
2025-07-11 17:45:16 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 获取统计数据
|
2025-08-06 09:59:34 +08:00
|
|
|
|
const { data: statsData, error: statsError } = await useAsyncData('stats', () => statsApi.getStats())
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 获取平台数据
|
2025-08-06 09:59:34 +08:00
|
|
|
|
const { data: platformsData, error: platformsError } = await useAsyncData('platforms', () => panApi.getPans())
|
2025-07-11 02:30:57 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 获取系统配置
|
2025-08-06 09:59:34 +08:00
|
|
|
|
const { data: systemConfigData, error: systemConfigError } = await useAsyncData('systemConfig', () => publicSystemConfigApi.getPublicSystemConfig())
|
|
|
|
|
|
|
|
|
|
|
|
// 错误处理
|
|
|
|
|
|
const notification = ref()
|
|
|
|
|
|
|
|
|
|
|
|
// 监听错误
|
|
|
|
|
|
watch(statsError, (error) => {
|
|
|
|
|
|
if (error && process.client) {
|
|
|
|
|
|
console.error('获取统计数据失败:', error)
|
|
|
|
|
|
notification.value = useNotification()
|
|
|
|
|
|
notification.value.error({
|
|
|
|
|
|
content: error.message || '获取统计数据失败',
|
|
|
|
|
|
duration: 5000
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
watch(platformsError, (error) => {
|
|
|
|
|
|
if (error && process.client) {
|
|
|
|
|
|
console.error('获取平台数据失败:', error)
|
|
|
|
|
|
notification.value = useNotification()
|
|
|
|
|
|
notification.value.error({
|
|
|
|
|
|
content: error.message || '获取平台数据失败',
|
|
|
|
|
|
duration: 5000
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
watch(systemConfigError, (error) => {
|
|
|
|
|
|
if (error && process.client) {
|
|
|
|
|
|
console.error('获取系统配置失败:', error)
|
|
|
|
|
|
notification.value = useNotification()
|
|
|
|
|
|
notification.value.error({
|
|
|
|
|
|
content: error.message || '获取系统配置失败',
|
|
|
|
|
|
duration: 5000
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-07-20 11:00:17 +08:00
|
|
|
|
|
|
|
|
|
|
// 从 SSR 数据中获取值
|
2025-07-22 00:44:56 +08:00
|
|
|
|
const safeResources = computed(() => (resourcesData.value as any)?.data || [])
|
2025-08-11 01:34:07 +08:00
|
|
|
|
const safeStats = computed(() => (statsData.value as any) || { total_resources: 0, total_categories: 0, total_tags: 0, total_views: 0, today_resources: 0 })
|
2025-07-21 22:52:41 +08:00
|
|
|
|
const platforms = computed(() => (platformsData.value as any) || [])
|
2025-07-23 18:42:24 +08:00
|
|
|
|
const systemConfig = computed(() => (systemConfigData.value as any).data || { site_title: '老九网盘资源数据库' })
|
2025-07-20 11:00:17 +08:00
|
|
|
|
const safeLoading = computed(() => pending.value)
|
|
|
|
|
|
|
2025-08-04 14:18:45 +08:00
|
|
|
|
|
|
|
|
|
|
// 从路由参数获取当前状态
|
|
|
|
|
|
const searchQuery = ref(route.query.search as string || '')
|
|
|
|
|
|
const selectedPlatform = computed(() => route.query.platform as string || '')
|
|
|
|
|
|
|
|
|
|
|
|
const handleSearch = () => {
|
|
|
|
|
|
const params = new URLSearchParams()
|
|
|
|
|
|
if (searchQuery.value) params.set('search', searchQuery.value)
|
|
|
|
|
|
if (selectedPlatform.value) params.set('platform', selectedPlatform.value)
|
|
|
|
|
|
window.location.href = `/?${params.toString()}`
|
|
|
|
|
|
}
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 初始化认证状态
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
animateCounters()
|
2025-08-14 09:46:13 +08:00
|
|
|
|
|
|
|
|
|
|
// 页面挂载完成时,如果有搜索关键词,请求 record 接口
|
|
|
|
|
|
if (process.client && route.query.search) {
|
|
|
|
|
|
const searchKeyword = route.query.search as string
|
|
|
|
|
|
if (searchKeyword.trim()) {
|
|
|
|
|
|
// 延迟执行,确保页面完全加载
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
const searchStatsApi = useSearchStatsApi()
|
|
|
|
|
|
searchStatsApi.recordSearch({ keyword: searchKeyword }).catch(err => {
|
|
|
|
|
|
console.error('记录搜索统计失败:', err)
|
|
|
|
|
|
})
|
|
|
|
|
|
}, 0)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-07-20 11:00:17 +08:00
|
|
|
|
})
|
2025-07-10 13:58:28 +08:00
|
|
|
|
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
// 获取平台名称
|
2025-07-20 11:00:17 +08:00
|
|
|
|
const getPlatformIcon = (panId: string) => {
|
2025-07-21 22:52:41 +08:00
|
|
|
|
const platform = (platforms.value as any).find((p: any) => p.id === panId)
|
2025-07-20 11:00:17 +08:00
|
|
|
|
return platform?.icon || '未知平台'
|
2025-07-16 01:09:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 09:51:55 +08:00
|
|
|
|
// 注意:链接访问统计已整合到 getResourceLink API 中
|
2025-07-21 22:52:41 +08:00
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
// 切换链接显示
|
2025-07-21 22:52:41 +08:00
|
|
|
|
const toggleLink = async (resource: any) => {
|
2025-08-09 09:51:55 +08:00
|
|
|
|
// 显示加载状态
|
|
|
|
|
|
selectedResource.value = { ...resource, loading: true }
|
2025-07-20 11:00:17 +08:00
|
|
|
|
showLinkModal.value = true
|
2025-08-09 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 调用新的获取链接API(同时统计访问次数)
|
|
|
|
|
|
const linkData = await resourceApi.getResourceLink(resource.id) as any
|
|
|
|
|
|
console.log('获取到的链接数据:', linkData)
|
|
|
|
|
|
|
|
|
|
|
|
// 更新资源信息,包含新的链接信息
|
|
|
|
|
|
selectedResource.value = {
|
|
|
|
|
|
...resource,
|
|
|
|
|
|
url: linkData.url,
|
|
|
|
|
|
save_url: linkData.type === 'transferred' ? linkData.url : resource.save_url,
|
|
|
|
|
|
loading: false,
|
|
|
|
|
|
linkType: linkData.type,
|
|
|
|
|
|
platform: linkData.platform,
|
|
|
|
|
|
message: linkData.message
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('获取资源链接失败:', error)
|
|
|
|
|
|
// 出错时使用原始资源信息
|
|
|
|
|
|
selectedResource.value = {
|
|
|
|
|
|
...resource,
|
|
|
|
|
|
loading: false,
|
2025-08-14 00:05:35 +08:00
|
|
|
|
error: '检测有效性失败,请自行验证'
|
2025-08-09 09:51:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-07-16 01:09:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
// 复制到剪贴板
|
|
|
|
|
|
const copyToClipboard = async (text: any) => {
|
2025-07-16 01:09:35 +08:00
|
|
|
|
try {
|
2025-07-20 11:00:17 +08:00
|
|
|
|
await navigator.clipboard.writeText(text)
|
2025-07-30 17:33:36 +08:00
|
|
|
|
if (process.client) {
|
|
|
|
|
|
const button = document.querySelector('.show-link-btn')
|
|
|
|
|
|
if (button) {
|
|
|
|
|
|
const originalText = button.innerHTML
|
|
|
|
|
|
button.innerHTML = '<i class="fas fa-check"></i> 已复制'
|
|
|
|
|
|
button.classList.add('bg-green-600')
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
button.innerHTML = originalText
|
|
|
|
|
|
button.classList.remove('bg-green-600')
|
|
|
|
|
|
}, 2000)
|
|
|
|
|
|
}
|
2025-07-16 01:09:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('复制失败:', error)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
// 格式化相对时间
|
|
|
|
|
|
const formatRelativeTime = (dateString: string) => {
|
|
|
|
|
|
const date = new Date(dateString)
|
|
|
|
|
|
const now = new Date()
|
|
|
|
|
|
const diffMs = now.getTime() - date.getTime()
|
|
|
|
|
|
const diffSec = Math.floor(diffMs / 1000)
|
|
|
|
|
|
const diffMin = Math.floor(diffSec / 60)
|
|
|
|
|
|
const diffHour = Math.floor(diffMin / 60)
|
|
|
|
|
|
const diffDay = Math.floor(diffHour / 24)
|
|
|
|
|
|
const diffWeek = Math.floor(diffDay / 7)
|
|
|
|
|
|
const diffMonth = Math.floor(diffDay / 30)
|
|
|
|
|
|
const diffYear = Math.floor(diffDay / 365)
|
|
|
|
|
|
|
|
|
|
|
|
const isToday = date.toDateString() === now.toDateString()
|
|
|
|
|
|
|
|
|
|
|
|
if (isToday) {
|
|
|
|
|
|
if (diffMin < 1) {
|
|
|
|
|
|
return '<span class="text-pink-600 font-medium flex items-center"><i class="fas fa-circle-dot text-xs mr-1 animate-pulse"></i>刚刚更新</span>'
|
|
|
|
|
|
} else if (diffHour < 1) {
|
|
|
|
|
|
return `<span class="text-pink-600 font-medium flex items-center"><i class="fas fa-circle-dot text-xs mr-1 animate-pulse"></i>${diffMin}分钟前</span>`
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return `<span class="text-pink-600 font-medium flex items-center"><i class="fas fa-circle-dot text-xs mr-1 animate-pulse"></i>${diffHour}小时前</span>`
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (diffDay < 1) {
|
2025-07-15 12:50:24 +08:00
|
|
|
|
return `<span class="text-gray-600">${diffHour}小时前</span>`
|
2025-07-10 13:58:28 +08:00
|
|
|
|
} else if (diffDay < 7) {
|
2025-07-15 12:50:24 +08:00
|
|
|
|
return `<span class="text-gray-600">${diffDay}天前</span>`
|
2025-07-10 13:58:28 +08:00
|
|
|
|
} else if (diffWeek < 4) {
|
2025-07-15 12:50:24 +08:00
|
|
|
|
return `<span class="text-gray-600">${diffWeek}周前</span>`
|
2025-07-10 13:58:28 +08:00
|
|
|
|
} else if (diffMonth < 12) {
|
2025-07-15 12:50:24 +08:00
|
|
|
|
return `<span class="text-gray-600">${diffMonth}个月前</span>`
|
2025-07-10 13:58:28 +08:00
|
|
|
|
} else {
|
2025-07-15 12:50:24 +08:00
|
|
|
|
return `<span class="text-gray-600">${diffYear}年前</span>`
|
2025-07-10 13:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否为今天更新
|
|
|
|
|
|
const isUpdatedToday = (dateString: string) => {
|
|
|
|
|
|
const date = new Date(dateString)
|
|
|
|
|
|
const now = new Date()
|
|
|
|
|
|
return date.toDateString() === now.toDateString()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 数字动画效果
|
|
|
|
|
|
const animateCounters = () => {
|
2025-07-30 17:33:36 +08:00
|
|
|
|
if (!process.client) return
|
|
|
|
|
|
|
2025-07-10 13:58:28 +08:00
|
|
|
|
const counters = document.querySelectorAll('.count-up')
|
|
|
|
|
|
const speed = 200
|
|
|
|
|
|
|
2025-07-20 11:00:17 +08:00
|
|
|
|
counters.forEach((counter) => {
|
2025-07-10 13:58:28 +08:00
|
|
|
|
const target = parseInt(counter.getAttribute('data-target') || '0')
|
|
|
|
|
|
const increment = Math.ceil(target / speed)
|
|
|
|
|
|
let count = 0
|
|
|
|
|
|
|
|
|
|
|
|
const updateCount = () => {
|
|
|
|
|
|
if (count < target) {
|
|
|
|
|
|
count += increment
|
|
|
|
|
|
if (count > target) count = target
|
|
|
|
|
|
counter.textContent = count.toString()
|
|
|
|
|
|
setTimeout(updateCount, 1)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
counter.textContent = target.toString()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
updateCount()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-10 01:27:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-07-11 17:45:16 +08:00
|
|
|
|
|
2025-08-04 14:18:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-07-10 13:58:28 +08:00
|
|
|
|
.active-filter {
|
|
|
|
|
|
@apply bg-slate-800 text-white;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.count-up {
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.animate-pulse {
|
|
|
|
|
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
|
|
0%, 100% {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
50% {
|
|
|
|
|
|
opacity: .5;
|
|
|
|
|
|
}
|
2025-07-10 01:27:35 +08:00
|
|
|
|
}
|
2025-07-23 18:42:24 +08:00
|
|
|
|
@keyframes bounce-slow {
|
|
|
|
|
|
0%, 100% { transform: translateY(0);}
|
|
|
|
|
|
50% { transform: translateY(-12px);}
|
|
|
|
|
|
}
|
|
|
|
|
|
.animate-bounce-slow {
|
|
|
|
|
|
animation: bounce-slow 1.6s infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
|
0%, 80%, 100% { opacity: 0.2;}
|
|
|
|
|
|
40% { opacity: 1;}
|
|
|
|
|
|
}
|
|
|
|
|
|
.animate-blink {
|
|
|
|
|
|
animation: blink 1.4s infinite both;
|
|
|
|
|
|
}
|
|
|
|
|
|
.animate-blink.delay-200 { animation-delay: 0.2s; }
|
|
|
|
|
|
.animate-blink.delay-400 { animation-delay: 0.4s; }
|
2025-07-25 18:22:35 +08:00
|
|
|
|
.header-container{
|
|
|
|
|
|
background: url(/assets/images/banner.webp) center top/cover no-repeat,
|
|
|
|
|
|
linear-gradient(
|
|
|
|
|
|
to bottom,
|
|
|
|
|
|
rgba(0,0,0,0.1) 0%,
|
|
|
|
|
|
rgba(0,0,0,0.25) 100%
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2025-08-13 15:22:01 +08:00
|
|
|
|
|
|
|
|
|
|
/* 文本截断样式 */
|
|
|
|
|
|
.line-clamp-2 {
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 表格单元格内容溢出控制 */
|
|
|
|
|
|
table td {
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 确保flex容器不会溢出 */
|
|
|
|
|
|
.min-w-0 {
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
2025-07-10 01:27:35 +08:00
|
|
|
|
</style>
|