From ba9b1743d6a9b132a982567f27c21a5933ad517a Mon Sep 17 00:00:00 2001 From: chenfang Date: Mon, 8 Apr 2024 08:51:37 +0800 Subject: [PATCH] =?UTF-8?q?app=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../systemInstallPackage/systemInstallPackage.data.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/system/systemInstallPackage/systemInstallPackage.data.ts b/src/views/system/systemInstallPackage/systemInstallPackage.data.ts index 9533653c4..c3ed88332 100644 --- a/src/views/system/systemInstallPackage/systemInstallPackage.data.ts +++ b/src/views/system/systemInstallPackage/systemInstallPackage.data.ts @@ -14,6 +14,7 @@ export const SystemInstallPackage = useCrudSchemas(reactive([ label: 'id', field: 'id', sort: 'custom', + isForm:false, }, { label: '安装包名称', @@ -25,6 +26,13 @@ export const SystemInstallPackage = useCrudSchemas(reactive([ label: '安装包版本', field: 'installPackageVersion', sort: 'custom', + form: { + component: 'InputNumber', + componentProps: { + min: 0, + precision: 6 + } + }, }, { label: '安装路径', @@ -64,6 +72,7 @@ export const SystemInstallPackage = useCrudSchemas(reactive([ label: '附件id', field: 'fileId', sort: 'custom', + isForm:false, form: { componentProps: { disabled: true