From 829b5495b27442bd53810ba69a5f2bfa2bc86522 Mon Sep 17 00:00:00 2001 From: gfdgd_xi <3025613752@qq.com> Date: Mon, 29 Jun 2026 22:07:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=81=94=E7=B3=BB=E9=82=AE?= =?UTF-8?q?=E7=AE=B1=E8=BE=93=E5=85=A5=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gfdgd_xi <3025613752@qq.com> --- src/components/SubmitterWindow.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/components/SubmitterWindow.vue b/src/components/SubmitterWindow.vue index 94bebcbd..8b834709 100644 --- a/src/components/SubmitterWindow.vue +++ b/src/components/SubmitterWindow.vue @@ -88,7 +88,20 @@ + + +
+ +
@@ -552,6 +565,7 @@ const formData = reactive({ version: "", author: "", contributor: "", + mail: "", website: "", debFilePath: "", iconPath: "", @@ -1260,6 +1274,7 @@ const resetForm = () => { formData.version = ""; formData.author = ""; formData.contributor = ""; + formData.mail = ""; formData.website = ""; formData.debFilePath = ""; formData.iconPath = ""; @@ -1290,6 +1305,7 @@ const submitForm = async () => { version: formData.version, author: formData.author, contributor: formData.contributor, + mail: formData.mail, website: formData.website, debFilePath: formData.debFilePath, iconPath: formData.iconPath, @@ -1346,6 +1362,7 @@ const packageApp = async (storeArch: string) => { version: formData.version, author: formData.author, contributor: formData.contributor, + mail: formData.mail, website: formData.website, debFilePath: formData.debFilePath, iconPath: formData.iconPath,