From 81bb118e00f8d5ee081795d142e539de50953518 Mon Sep 17 00:00:00 2001 From: wangting <675591594@qq.com> Date: 星期一, 15 四月 2024 17:27:25 +0800 Subject: [PATCH] 列表查询 --- Source/ProjectWeb/src/views/base/UIContentArea.vue | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/Source/ProjectWeb/src/views/base/UIContentArea.vue b/Source/ProjectWeb/src/views/base/UIContentArea.vue index 41c9ee3..82f2975 100644 --- a/Source/ProjectWeb/src/views/base/UIContentArea.vue +++ b/Source/ProjectWeb/src/views/base/UIContentArea.vue @@ -22,9 +22,12 @@ </el-collapse> <div v-else class="componentVO"> <compoent-index :key="areasName+'componentVO-'+areaItem.componentVOs[0].oid" + :uiBtmType="uiBtmType" + :uiContext="uiContext" :inDialog="inDialog" :componentVO="areaItem.componentVOs[0]" :sourceData="newSourceData" + :sourceBtmType="sourceBtmType" :dataStore="dataStore" :areasName="areasName" :paramVOS="paramVOS" @@ -41,9 +44,12 @@ </template> <div class="componentVO"> <compoent-index :key="areasName+'componentVO-'+componentVO.oid" + :uiBtmType="uiBtmType" + :uiContext="uiContext" :inDialog="inDialog" :componentVO="componentVO" :sourceData="newSourceData" + :sourceBtmType="sourceBtmType" :dataStore="dataStore" :areasName="areasName" :paramVOS="paramVOS" @@ -54,9 +60,12 @@ </el-collapse> <div v-else class="componentVO"> <compoent-index :key="areasName+'componentVO-'+newAreasData[0].componentVOs[0].oid" + :uiBtmType="uiBtmType" + :uiContext="uiContext" :inDialog="inDialog" :componentVO="newAreasData[0].componentVOs[0]" :sourceData="newSourceData" + :sourceBtmType="sourceBtmType" :dataStore="dataStore" :areasName="areasName" :paramVOS="paramVOS" @@ -104,6 +113,14 @@ name: "UIContentArea", components:{compoentIndex}, props:{ + //ui涓婁笅鏂囩殑涓氬姟绫诲瀷锛堟垨閾炬帴绫诲瀷锛� + uiBtmType: { + type: String + }, + //ui涓婁笅鏂� + uiContext:{ + type: String + }, inDialog: { type: Boolean, default: false @@ -121,6 +138,10 @@ type:Object, default: {} }, + //涓婁竴鍖哄煙涓氬姟绫诲瀷 + sourceBtmType:{ + type: String + }, dataStore:{ //寮圭獥鏃舵寜閽墍灞炲尯鍩熼�変腑鏁版嵁 type:Array, -- Gitblit v1.9.3