From 1704a7b5c16d4805c0787202946378914eecd1ed Mon Sep 17 00:00:00 2001 From: R2m1liA <15258427350@163.com> Date: Wed, 15 Oct 2025 16:49:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20production=E9=A1=B5=E7=9A=84CMS?= =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/DocumentList.vue | 11 +- app/components/QuestionList.vue | 10 +- app/components/SpecTable.vue | 18 +-- app/pages/productions/[...slug].vue | 168 +++++++++++++++++++++------- app/pages/productions/index.vue | 89 ++++++++++----- 5 files changed, 202 insertions(+), 94 deletions(-) diff --git a/app/components/DocumentList.vue b/app/components/DocumentList.vue index c30953a..0061070 100644 --- a/app/components/DocumentList.vue +++ b/app/components/DocumentList.vue @@ -6,18 +6,19 @@ class="document-card" >
-

{{ doc.caption || doc.name }}

+

{{ doc.title }}

大小: {{ formatFileSize(doc.size) }} - 格式: {{ formatFileExtension(doc.ext) }}格式: + {{ formatFileExtension(getFileExtension(doc.filename)) }} 下载 @@ -30,7 +31,7 @@ diff --git a/app/pages/productions/[...slug].vue b/app/pages/productions/[...slug].vue index 21e95fc..02851b1 100644 --- a/app/pages/productions/[...slug].vue +++ b/app/pages/productions/[...slug].vue @@ -15,7 +15,7 @@ }} {{ - production.title + production.name }} @@ -23,9 +23,9 @@
-

{{ production.title }}

+

{{ production.name }}

{{ production.summary }}

@@ -65,24 +65,16 @@
- + - + - + - +
@@ -114,40 +106,130 @@