first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div id="app-container">
|
||||
<header class="app-header" style="justify-content: center;">
|
||||
<div class="logo">文档预览</div>
|
||||
</header>
|
||||
<main class="app-main">
|
||||
<router-view></router-view>
|
||||
</main>
|
||||
<footer class="app-footer">
|
||||
<p>© 2026 隼瞻科技. 版权所有.</p>
|
||||
</footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
/* Scoped styles can go here, but main layout is in style.css */
|
||||
</style>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 496 B |
@@ -0,0 +1,125 @@
|
||||
<template>
|
||||
<div class="preview-container">
|
||||
<div class="text-center mb-2">
|
||||
<h2>{{ title || "文档预览" }}</h2>
|
||||
<p style="color: var(--text-muted); margin-top: 0.5rem;">当前展示前 2 页。</p>
|
||||
</div>
|
||||
|
||||
<!-- The PDF Viewer for the first two pages -->
|
||||
<div class="pdf-render-wrapper">
|
||||
<VuePdfEmbed
|
||||
v-if="url"
|
||||
:source="url"
|
||||
class="pdf-viewer"
|
||||
@rendered="onRendered"
|
||||
/>
|
||||
<div v-if="!rendered" class="loading-state text-center" style="padding: 3rem;">
|
||||
正在安全地解析文档...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- The Blurred Placeholder (Only shown after PDF renders) -->
|
||||
<div v-if="rendered" class="blur-placeholder pointer" @click="showModal = true">
|
||||
<div class="blur-content text-center">
|
||||
<h3 style="font-size: 1.8rem; margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.8);">完整文档已被锁定</h3>
|
||||
<p style="text-shadow: 0 1px 5px rgba(0,0,0,0.8); margin-bottom: 1.5rem;">请联系我们获取完整文档。</p>
|
||||
<button class="btn btn-accent" style="font-size: 1.1rem; padding: 1rem 2rem;">立即联系我们</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal with Iframe -->
|
||||
<div v-if="showModal" class="modal-overlay" @click.self="showModal = false">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<span class="modal-title">获取完整文档</span>
|
||||
<button class="modal-close" @click="showModal = false">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<iframe
|
||||
src="https://www.beiyuxing.live/form-only/"
|
||||
class="modal-iframe"
|
||||
title="联系表单"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import VuePdfEmbed from 'vue-pdf-embed';
|
||||
|
||||
const props = defineProps({
|
||||
url: String,
|
||||
title: String
|
||||
});
|
||||
|
||||
const showModal = ref(false);
|
||||
const rendered = ref(false);
|
||||
|
||||
const onRendered = () => {
|
||||
rendered.value = true;
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.preview-container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.pdf-render-wrapper {
|
||||
background: white; /* PDF viewer should have a white background so text is readable */
|
||||
border-radius: 8px 8px 0 0;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.pdf-viewer {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Forcing canvas elements to look nice */
|
||||
:deep(.vue-pdf-embed canvas) {
|
||||
margin-bottom: 10px;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.blur-placeholder {
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(15,23,42,0.8) 100%);
|
||||
position: relative;
|
||||
height: 400px;
|
||||
border-radius: 0 0 16px 16px;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
|
||||
margin-top: -20px; /* pull up slightly to overlap with the pdf */
|
||||
z-index: 10;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.blur-placeholder::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background-image:
|
||||
repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px),
|
||||
repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px);
|
||||
backdrop-filter: blur(8px);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.blur-placeholder:hover {
|
||||
transform: translateY(5px);
|
||||
}
|
||||
|
||||
.blur-content {
|
||||
z-index: 1;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,93 @@
|
||||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
import viteLogo from '../assets/vite.svg'
|
||||
import heroImg from '../assets/hero.png'
|
||||
import vueLogo from '../assets/vue.svg'
|
||||
|
||||
const count = ref(0)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section id="center">
|
||||
<div class="hero">
|
||||
<img :src="heroImg" class="base" width="170" height="179" alt="" />
|
||||
<img :src="vueLogo" class="framework" alt="Vue logo" />
|
||||
<img :src="viteLogo" class="vite" alt="Vite logo" />
|
||||
</div>
|
||||
<div>
|
||||
<h1>Get started</h1>
|
||||
<p>Edit <code>src/App.vue</code> and save to test <code>HMR</code></p>
|
||||
</div>
|
||||
<button class="counter" @click="count++">Count is {{ count }}</button>
|
||||
</section>
|
||||
|
||||
<div class="ticks"></div>
|
||||
|
||||
<section id="next-steps">
|
||||
<div id="docs">
|
||||
<svg class="icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#documentation-icon"></use>
|
||||
</svg>
|
||||
<h2>Documentation</h2>
|
||||
<p>Your questions, answered</p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://vite.dev/" target="_blank">
|
||||
<img class="logo" :src="viteLogo" alt="" />
|
||||
Explore Vite
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://vuejs.org/" target="_blank">
|
||||
<img class="button-icon" :src="vueLogo" alt="" />
|
||||
Learn more
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="social">
|
||||
<svg class="icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#social-icon"></use>
|
||||
</svg>
|
||||
<h2>Connect with us</h2>
|
||||
<p>Join the Vite community</p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://github.com/vitejs/vite" target="_blank">
|
||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#github-icon"></use>
|
||||
</svg>
|
||||
GitHub
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://chat.vite.dev/" target="_blank">
|
||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#discord-icon"></use>
|
||||
</svg>
|
||||
Discord
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://x.com/vite_js" target="_blank">
|
||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#x-icon"></use>
|
||||
</svg>
|
||||
X.com
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://bsky.app/profile/vite.dev" target="_blank">
|
||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#bluesky-icon"></use>
|
||||
</svg>
|
||||
Bluesky
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="ticks"></div>
|
||||
<section id="spacer"></section>
|
||||
</template>
|
||||
@@ -0,0 +1,8 @@
|
||||
import { createApp } from 'vue';
|
||||
import './style.css';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
|
||||
const app = createApp(App);
|
||||
app.use(router);
|
||||
app.mount('#app');
|
||||
@@ -0,0 +1,17 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router';
|
||||
import Home from '../views/Home.vue';
|
||||
import Admin from '../views/Admin.vue';
|
||||
import Preview from '../views/Preview.vue';
|
||||
|
||||
const routes = [
|
||||
{ path: '/', component: Home },
|
||||
{ path: '/admin', component: Admin },
|
||||
{ path: '/preview/:id', component: Preview, props: true }
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHistory(),
|
||||
routes
|
||||
});
|
||||
|
||||
export default router;
|
||||
@@ -0,0 +1,237 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
|
||||
|
||||
:root {
|
||||
--bg-dark: #0f172a;
|
||||
--bg-darker: #020617;
|
||||
--primary: #3b82f6;
|
||||
--primary-glow: rgba(59, 130, 246, 0.5);
|
||||
--accent: #8b5cf6;
|
||||
--text-main: #f8fafc;
|
||||
--text-muted: #94a3b8;
|
||||
--glass-bg: rgba(30, 41, 59, 0.7);
|
||||
--glass-border: rgba(255, 255, 255, 0.1);
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-darker);
|
||||
background-image:
|
||||
radial-gradient(at 0% 0%, rgba(15, 23, 42, 1) 0, transparent 50%),
|
||||
radial-gradient(at 50% 100%, rgba(15, 23, 42, 1) 0, transparent 50%),
|
||||
radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.15) 0, transparent 50%);
|
||||
color: var(--text-main);
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Headers & Navigation */
|
||||
.app-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1.5rem 3rem;
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(12px);
|
||||
border-bottom: 1px solid var(--glass-border);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-weight: 700;
|
||||
font-size: 1.5rem;
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.app-header nav a {
|
||||
color: var(--text-muted);
|
||||
text-decoration: none;
|
||||
margin-left: 2rem;
|
||||
font-weight: 600;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.app-header nav a:hover, .app-header nav a.router-link-active {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.app-main {
|
||||
padding: 3rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
min-height: calc(100vh - 160px);
|
||||
}
|
||||
|
||||
.app-footer {
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.9rem;
|
||||
background: var(--bg-darker);
|
||||
border-top: 1px solid var(--glass-border);
|
||||
}
|
||||
|
||||
/* Glassmorphism Cards */
|
||||
.glass-card {
|
||||
background: var(--glass-bg);
|
||||
backdrop-filter: blur(16px);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.glass-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 0.8rem 1.5rem;
|
||||
border-radius: 8px;
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
background: var(--primary);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background: #2563eb;
|
||||
box-shadow: 0 0 15px var(--primary-glow);
|
||||
}
|
||||
|
||||
.btn-accent {
|
||||
background: linear-gradient(135deg, var(--accent), var(--primary));
|
||||
}
|
||||
|
||||
.btn-accent:hover {
|
||||
box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
.form-group {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
border-radius: 8px;
|
||||
background: rgba(15, 23, 42, 0.6);
|
||||
border: 1px solid var(--glass-border);
|
||||
color: white;
|
||||
font-family: 'Inter', sans-serif;
|
||||
transition: border-color 0.3s ease;
|
||||
}
|
||||
|
||||
.form-control:focus {
|
||||
outline: none;
|
||||
border-color: var(--primary);
|
||||
box-shadow: 0 0 10px var(--primary-glow);
|
||||
}
|
||||
|
||||
/* Utilities */
|
||||
.text-center { text-align: center; }
|
||||
.mb-2 { margin-bottom: 2rem; }
|
||||
.mb-1 { margin-bottom: 1rem; }
|
||||
.mt-2 { margin-top: 2rem; }
|
||||
|
||||
/* Modal */
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
backdrop-filter: blur(8px);
|
||||
z-index: 1000;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
animation: fadeIn 0.3s ease;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background: var(--bg-dark);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: 16px;
|
||||
width: 90%;
|
||||
max-width: 600px;
|
||||
height: 80vh;
|
||||
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
padding: 1rem 1.5rem;
|
||||
border-bottom: 1px solid var(--glass-border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background: rgba(30, 41, 59, 0.8);
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
font-weight: 600;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--text-muted);
|
||||
font-size: 1.5rem;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.modal-close:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
flex-grow: 1;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.modal-iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
<template>
|
||||
<div class="admin-container">
|
||||
<div v-if="!isLoggedIn" class="glass-card login-card" style="max-width: 400px; margin: 0 auto;">
|
||||
<h2 class="text-center mb-1">管理员登录</h2>
|
||||
<div v-if="errorMsg" style="color: #ef4444; margin-bottom: 1rem; text-align: center;">{{ errorMsg }}</div>
|
||||
|
||||
<form @submit.prevent="handleLogin">
|
||||
<div class="form-group">
|
||||
<label>用户名</label>
|
||||
<input type="text" v-model="username" class="form-control" required />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>密码</label>
|
||||
<input type="password" v-model="password" class="form-control" required />
|
||||
</div>
|
||||
<button type="submit" class="btn btn-accent" style="width: 100%;">登录</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div v-else class="glass-card dashboard-card">
|
||||
<div style="display: flex; justify-content: space-between; align-items: center;" class="mb-2">
|
||||
<h2>管理员控制台</h2>
|
||||
<button @click="logout" class="btn">退出登录</button>
|
||||
</div>
|
||||
|
||||
<div class="upload-section mb-2" style="background: rgba(15, 23, 42, 0.4); padding: 1.5rem; border-radius: 8px;">
|
||||
<h3 class="mb-1">上传新 PDF 文档</h3>
|
||||
<form @submit.prevent="handleUpload">
|
||||
<div class="form-group">
|
||||
<label>文档标题(可选)</label>
|
||||
<input type="text" v-model="uploadTitle" class="form-control" placeholder="默认为文件名..." />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>选择 PDF 文件</label>
|
||||
<input type="file" ref="fileInput" accept=".pdf" class="form-control" required />
|
||||
</div>
|
||||
<button type="submit" class="btn btn-accent" :disabled="uploading">
|
||||
{{ uploading ? '正在上传并处理...' : '上传文档' }}
|
||||
</button>
|
||||
<div v-if="uploadStatus" style="margin-top: 1rem; color: #10b981;">{{ uploadStatus }}</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>管理文档</h3>
|
||||
<p style="color: var(--text-muted); margin-bottom: 1rem;">从系统中删除文档。</p>
|
||||
|
||||
<div v-for="doc in documents" :key="doc.id" style="display: flex; justify-content: space-between; padding: 1rem; border-top: 1px solid var(--glass-border); align-items: center;">
|
||||
<div>
|
||||
<strong>{{ doc.title }}</strong><br />
|
||||
<span style="font-size: 0.85rem; color: var(--text-muted)">上传时间: {{ new Date(doc.created_at).toLocaleDateString() }}</span>
|
||||
</div>
|
||||
<button @click="deleteDoc(doc.id)" class="btn" style="background: #ef4444; padding: 0.5rem 1rem; font-size: 0.9rem;">删除</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import axios from 'axios';
|
||||
|
||||
const isLoggedIn = ref(false);
|
||||
const username = ref('');
|
||||
const password = ref('');
|
||||
const errorMsg = ref('');
|
||||
|
||||
const fileInput = ref(null);
|
||||
const uploadTitle = ref('');
|
||||
const uploading = ref(false);
|
||||
const uploadStatus = ref('');
|
||||
const documents = ref([]);
|
||||
|
||||
onMounted(() => {
|
||||
const token = localStorage.getItem('admin_token');
|
||||
if (token) {
|
||||
isLoggedIn.value = true;
|
||||
fetchDocs();
|
||||
}
|
||||
});
|
||||
|
||||
const handleLogin = async () => {
|
||||
try {
|
||||
const res = await axios.post('http://localhost:3000/api/admin/login', {
|
||||
username: username.value,
|
||||
password: password.value
|
||||
});
|
||||
localStorage.setItem('admin_token', res.data.token);
|
||||
isLoggedIn.value = true;
|
||||
errorMsg.value = '';
|
||||
fetchDocs();
|
||||
} catch (err) {
|
||||
errorMsg.value = '凭证无效';
|
||||
}
|
||||
};
|
||||
|
||||
const logout = () => {
|
||||
localStorage.removeItem('admin_token');
|
||||
isLoggedIn.value = false;
|
||||
};
|
||||
|
||||
const fetchDocs = async () => {
|
||||
try {
|
||||
const res = await axios.get('http://localhost:3000/api/documents');
|
||||
documents.value = res.data;
|
||||
} catch (e) {
|
||||
console.error("Failed to load documents");
|
||||
}
|
||||
};
|
||||
|
||||
const handleUpload = async () => {
|
||||
const file = fileInput.value.files[0];
|
||||
if (!file) return;
|
||||
|
||||
uploading.value = true;
|
||||
uploadStatus.value = '';
|
||||
|
||||
const formData = new FormData();
|
||||
formData.append('document', file);
|
||||
if (uploadTitle.value) formData.append('title', uploadTitle.value);
|
||||
|
||||
try {
|
||||
const token = localStorage.getItem('admin_token');
|
||||
await axios.post('http://localhost:3000/api/admin/upload', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data',
|
||||
'Authorization': `Bearer ${token}`
|
||||
}
|
||||
});
|
||||
|
||||
uploadStatus.value = '文档上传并处理成功!';
|
||||
fileInput.value.value = '';
|
||||
uploadTitle.value = '';
|
||||
fetchDocs();
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
uploadStatus.value = '上传文档失败。';
|
||||
} finally {
|
||||
uploading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const deleteDoc = async (id) => {
|
||||
if(!confirm("确定要执行此操作吗?")) return;
|
||||
try {
|
||||
const token = localStorage.getItem('admin_token');
|
||||
await axios.delete(`http://localhost:3000/api/admin/documents/${id}`, {
|
||||
headers: { 'Authorization': `Bearer ${token}` }
|
||||
});
|
||||
fetchDocs();
|
||||
} catch(e) {
|
||||
alert("删除失败");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,80 @@
|
||||
<template>
|
||||
<div class="home">
|
||||
<div class="text-center mb-2">
|
||||
<h1 style="font-size: 2.5rem; margin-bottom: 1rem;">可用文档列表</h1>
|
||||
<p style="color: var(--text-muted); font-size: 1.1rem;">浏览我们的文档库。点击任意文档即可预览内容。</p>
|
||||
</div>
|
||||
|
||||
<div v-if="loading" class="text-center">
|
||||
<p>正在加载文档...</p>
|
||||
</div>
|
||||
|
||||
<div v-else-if="documents.length === 0" class="text-center">
|
||||
<p>暂无上传的文档。</p>
|
||||
</div>
|
||||
|
||||
<div v-else class="doc-grid">
|
||||
<div v-for="doc in documents" :key="doc.id" class="glass-card doc-card" @click="goToPreview(doc.id)">
|
||||
<div class="doc-icon">📄</div>
|
||||
<h3>{{ doc.title }}</h3>
|
||||
<p class="date">{{ new Date(doc.created_at).toLocaleDateString() }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { useRouter } from 'vue-router';
|
||||
import axios from 'axios';
|
||||
|
||||
const documents = ref([]);
|
||||
const loading = ref(true);
|
||||
const router = useRouter();
|
||||
|
||||
onMounted(async () => {
|
||||
try {
|
||||
const res = await axios.get('http://localhost:3000/api/documents');
|
||||
documents.value = res.data;
|
||||
} catch (error) {
|
||||
console.error("Error fetching docs", error);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
});
|
||||
|
||||
const goToPreview = (id) => {
|
||||
router.push(`/preview/${id}`);
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.doc-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.doc-card {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.doc-icon {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.doc-card h3 {
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.date {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,46 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="mb-2">
|
||||
<button class="btn" style="background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border);" @click="goBack">
|
||||
← 返回列表
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div v-if="loading" class="text-center">
|
||||
<p>正在加载文档信息...</p>
|
||||
</div>
|
||||
<div v-else-if="error" class="text-center" style="color: #ef4444;">
|
||||
<p>{{ error }}</p>
|
||||
</div>
|
||||
<DocumentPreview v-else :url="document.url" :title="document.title" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
import axios from 'axios';
|
||||
import DocumentPreview from '../components/DocumentPreview.vue';
|
||||
|
||||
const route = useRoute();
|
||||
const router = useRouter();
|
||||
const document = ref(null);
|
||||
const loading = ref(true);
|
||||
const error = ref('');
|
||||
|
||||
onMounted(async () => {
|
||||
try {
|
||||
const id = route.params.id;
|
||||
const res = await axios.get(`http://localhost:3000/api/documents/${id}`);
|
||||
document.value = res.data;
|
||||
} catch (err) {
|
||||
error.value = "文档未找到或无法访问。";
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
});
|
||||
|
||||
const goBack = () => {
|
||||
router.push('/');
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user