wangting
2024-03-28 11654cd865cb3c01817eeb765e341bb617a23458
Source/ProjectWeb/src/views/base/UIContentViewer.vue
@@ -6,7 +6,7 @@
                     :areasData="uiDefineVO.northAreas"
                     :inDialog="inDialog"
                     :sourceData="sourceData"
                     :dataStore="checkedData.northArea[0]"
                     :dataStore="checkedData.northArea"
                     :paramVOS="paramVOS"
                     @setDataStore="setDataStore">
      </UIContentArea>
@@ -18,7 +18,7 @@
                       :areasData="uiDefineVO.westAreas"
                       :inDialog="inDialog"
                       :sourceData="sourceData"
                       :dataStore="checkedData.westArea[0]"
                       :dataStore="checkedData.westArea"
                       :paramVOS="paramVOS"
                       @setDataStore="setDataStore">
        </UIContentArea>
@@ -29,8 +29,8 @@
                         cradStyle=""
                         :areasData="uiDefineVO.centerAreas"
                         :inDialog="inDialog"
                         :sourceData="checkedData.westArea[0]"
                         :dataStore="checkedData.centerArea[0]"
                         :sourceData="checkedData.westArea[checkedData.westArea.length-1]"
                         :dataStore="checkedData.centerArea"
                         :paramVOS="paramVOS"
                         @setDataStore="setDataStore">
          </UIContentArea>
@@ -40,8 +40,8 @@
                         cradStyle=""
                         :areasData="uiDefineVO.southAreas"
                         :inDialog="inDialog"
                         :sourceData="checkedData.centerArea[0]"
                         :dataStore="checkedData.southArea[0]"
                         :sourceData="checkedData.centerArea[checkedData.centerArea.length-1]"
                         :dataStore="checkedData.southArea"
                         :paramVOS="paramVOS"
                         @setDataStore="setDataStore">
          </UIContentArea>
@@ -79,10 +79,10 @@
      content:'',//UI上下文的名称
      checkedData:{
        //各区域选中数据
        northArea:[],
        westArea:[],
        centerArea:[],
        southArea:[]
        northArea:[{}],
        westArea:[{}],
        centerArea:[{}],
        southArea:[{}]
      },
      uiDefineVO: uiDefineVOData,
      centerHeight:'100%'