| | |
| | | :paramVOS="paramVOS" |
| | | :inDialog="inDialog" |
| | | :canEdit="canEdit" |
| | | :sourceData="checkedData.westAreaInDialog.data[checkedData.westAreaInDialog.data.length-1]" |
| | | :sourceBtmType="checkedData.westAreaInDialog.DefineVOBtmType" |
| | | :sourceData="(uiDefineVO.westAreas && uiDefineVO.westAreas.length>0)?checkedData.westAreaInDialog.data[checkedData.westAreaInDialog.data.length-1]:sourceData" |
| | | :sourceBtmType="(uiDefineVO.westAreas && uiDefineVO.westAreas.length>0)?checkedData.westAreaInDialog.DefineVOBtmType:btmType" |
| | | areas-name="centerAreaInDialog" |
| | | cradStyle="" |
| | | @setData="setData" |
| | |
| | | data:{ |
| | | northAreaInDialog:{ |
| | | type:'', |
| | | btmType:'', |
| | | DefineVO:null, |
| | | data:null |
| | | }, |
| | | westAreaInDialog:{ |
| | | type:'', |
| | | btmType:'', |
| | | DefineVO:null, |
| | | data:null |
| | | }, |
| | | centerAreaInDialog:{ |
| | | type:'', |
| | | btmType:'', |
| | | DefineVO:null, |
| | | data:null |
| | | }, |
| | | southAreaInDialog:{ |
| | | type:'', |
| | | btmType:'', |
| | | DefineVO:null, |
| | | data:null |
| | | } |
| | | }, |
| | |
| | | } |
| | | }, |
| | | setData(value) { |
| | | this.data[value.area].btmType = value.btmType; |
| | | this.data[value.area].DefineVO = value.currentDefineVO; |
| | | this.data[value.area].data = value.data; |
| | | this.data[value.area].type = value.type; |
| | | }, |