From 3094e4bd33d8b1a4ee2a098bdef883ca7f9e7f6f Mon Sep 17 00:00:00 2001
From: zhang_li
Date: Fri, 30 May 2025 13:12:17 +0800
Subject: [PATCH] =?UTF-8?q?SBBJ-1206=E5=9B=BA=E5=AE=9A=E8=B5=84=E4=BA=A7?=
=?UTF-8?q?=E7=AE=A1=E7=90=86=E3=80=81=E5=B7=A5=E4=BD=8D=E5=99=A8=E5=85=B7?=
=?UTF-8?q?=E7=AE=A1=E7=90=86=EF=BC=8C=E7=BC=96=E8=BE=91=E7=BC=96=E5=8F=B7?=
=?UTF-8?q?=E5=BA=94=E4=B8=8D=E8=83=BD=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/eam/basic/assetsAccount/index.vue | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/views/eam/basic/assetsAccount/index.vue b/src/views/eam/basic/assetsAccount/index.vue
index 11398bf..be3c985 100644
--- a/src/views/eam/basic/assetsAccount/index.vue
+++ b/src/views/eam/basic/assetsAccount/index.vue
@@ -179,8 +179,18 @@ const openForm = (type: string, row?: any) => {
row['upload']= row.filePathList?.map((item: any) => {
return {url:item}
})
+ AssetsAccount.allSchemas.formSchema.forEach(item => {
+ if (item.field == 'number') {
+ item.componentProps.disabled = true
+ }
+ })
basicFormRef.value.open(type, row)
} else {
+ AssetsAccount.allSchemas.formSchema.forEach(item => {
+ if (item.field == 'number') {
+ item.componentProps.disabled = false
+ }
+ })
basicFormRef.value.open(type, row)
}