From d194fa1a20065917b54664b504aba427dbbdf2ed Mon Sep 17 00:00:00 2001 From: keven1024 Date: Tue, 20 May 2025 11:47:20 +0800 Subject: [PATCH] fix(front): correct download and view limit values in FileShareHandle and TextShareHandle components --- front/components/Preprocessing/FileShareHandle.vue | 4 ++-- front/components/Preprocessing/TextShareHandle.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/front/components/Preprocessing/FileShareHandle.vue b/front/components/Preprocessing/FileShareHandle.vue index 047c118..13f387f 100644 --- a/front/components/Preprocessing/FileShareHandle.vue +++ b/front/components/Preprocessing/FileShareHandle.vue @@ -21,8 +21,8 @@ const props = defineProps<{ { label: '1次下载', value: 1 }, { label: '2次下载', value: 2 }, { label: '3次下载', value: 3 }, - { label: '5次下载', value: 4 }, - { label: '10次下载', value: 5 }, + { label: '5次下载', value: 5 }, + { label: '10次下载', value: 10 }, ]" /> 或