From 948a8b5fba4baf0a19493ae6d7b8a1dee0d4101a Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期二, 14 五月 2024 17:01:19 +0800
Subject: [PATCH] 修改action实现机制,配置文档

---
 Source/ProjectWeb/src/components/PLT-basic-component/basicForm.vue |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/Source/ProjectWeb/src/components/PLT-basic-component/basicForm.vue b/Source/ProjectWeb/src/components/PLT-basic-component/basicForm.vue
index b6db326..ca5e5b4 100644
--- a/Source/ProjectWeb/src/components/PLT-basic-component/basicForm.vue
+++ b/Source/ProjectWeb/src/components/PLT-basic-component/basicForm.vue
@@ -75,6 +75,11 @@
       type: Object,
       default: () => {},
     },
+    uploadattachment:{
+      //鏄惁鏄剧ず涓婁紶闄勪欢
+      type:Boolean,
+      default:false
+    },
   },
   data() {
     return {
@@ -225,6 +230,10 @@
         this.subitemName = col.field;
       }else if(col.type === 'upload'){
         console.log('col',col)
+      }else if(col.type=="multiFile"){
+        if(this.uploadattachment == "false" || this.uploadattachment == false){
+          col.display=false
+        }
       }
       if (col.type === "select") {
         if(col.data && col.data.length>0){

--
Gitblit v1.9.3