Merge remote-tracking branch 'origin/master'
# Conflicts:
# Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue
¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <basic-container> |
| | | æµè¯èªå®ä¹ç»ä»¶å±ç¤ºddddd |
| | | </basic-container> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: "test" |
| | | } |
| | | </script> |
| | | |
| | | <style scoped> |
| | | |
| | | </style> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <basic-container> |
| | | æµè¯èªå®ä¹ç»ä»¶å±ç¤º222222222 |
| | | </basic-container> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: "test2" |
| | | } |
| | | </script> |
| | | |
| | | <style scoped> |
| | | |
| | | </style> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | |
| | | export default { |
| | | name: "dynamic-custom", |
| | | components:{ |
| | | 'UI':()=>import('@/views/base/UIContentViewerInDialog'), |
| | | 'test':()=>import('@/components/custom-ui/test'), |
| | | 'test2':()=>import('@/components/custom-ui/test2'), |
| | | }, |
| | | props:{ |
| | | componentVO:{ |
| | | type:Object, |
| | |
| | | default: true |
| | | }, |
| | | }, |
| | | components:{ |
| | | 'my-dynamic-component': ()=>import('@/views/base/UIContentViewerInDialog') |
| | | }, |
| | | data() { |
| | | return { |
| | | height:'300px', |
| | | customClass:this.componentVO.customClass, //UI:type#content?param=xxxæè
ç»ä»¶name:type#content?param=xxx |
| | | isError:false, //è·¯å¾è§£æå¤±è´¥ |
| | | currentComponent: 'my-dynamic-component', |
| | | componentPath:'@/views/base/UIContentViewerInDialog' //èªå®ä¹ä½¿ç¨çç»ä»¶è·¯å¾ |
| | | currentComponent: 'UI',//ç»ä»¶name |
| | | } |
| | | }, |
| | | computed:{ |
| | | customOptions() { |
| | | let componentPath='@/views/base/UIContentViewerInDialog'; |
| | | if(this.customClass.indexOf(":") <0){ |
| | | this.isError=true; |
| | | return ; |
| | | } |
| | | |
| | | if(this.customClass.split(':')[0]!='UI' && this.customClass.split(':')[0]!='ui'){ |
| | | componentPath='@/views/custom/'+this.customClass.split(':')[0]; |
| | | this.currentComponent=this.customClass.split(':')[0]; |
| | | } |
| | | let urlParams={}; |
| | | let btmType='' |
| | |
| | | }) |
| | | } |
| | | |
| | | this.componentPath=componentPath; |
| | | return { |
| | | btmType:btmType, |
| | | content:content, |
| | | urlParams: urlParams, |
| | | uiComponentType: this.componentVO.uiComponentType, |
| | | uiComponentTypeText: this.componentVO.uiComponentTypeText, |
| | | uiParseClass: this.componentVO.uiParseClass |
| | | urlParams: urlParams |
| | | } |
| | | }, |
| | | asyncComponent() { |
| | | return import(this.componentPath); |
| | | } |
| | | }, |
| | | created() { |
| | | // debugger; |
| | | // this.components["my-dynamic-component"] = import(this.componentPath); |
| | | |
| | | }, |
| | | mounted() { |
| | | //this.getHeight(this.$parent); |
| | | }, |
| | | methods:{ |
| | | getHeight(el){ |
| | | if(el.$el.clientHeight>50){ |
| | | this.height=el.$el.clientHeight+'px'; |
| | | }else { |
| | | this.getHeight(el.$parent); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | <basic-container :cradStyle="cradStyle" cardBodyStyle="height:100%;box-sizing: border-box;padding-bottom:5px;"> |
| | | <el-tabs style="height: 100%;" class="UITabs" v-if="areasData.length>1" v-model="activeName" type="card" @tab-click="tabHandleClick"> |
| | | <el-tab-pane style="height:100%;overflow: auto" v-for="(areaItem,index) in areasData" :key="areaItem.oid" :label="areaItem.name" :name="areasName+'-Tab-'+index"> |
| | | <el-collapse class="UI-collapse" v-model="collapseActiveNames" v-if="areaItem.componentVOs.length>1" @change="handleChange"> |
| | | <el-collapse class="UI-collapse" :key="areaItem.oid+'-collapse'" v-model="collapseActiveNames" v-if="areaItem.componentVOs.length>1" @change="handleChange"> |
| | | <el-collapse-item v-for="(componentVO,componentIndex) in areaItem.componentVOs" :name="areasName+'-collapse-'+componentIndex"> |
| | | <template slot="title"> |
| | | {{componentVO.name}} |
| | |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | <div v-else style="height:100%;overflow: auto"> |
| | | <el-collapse class="UI-collapse" v-model="collapseActiveNames" v-if="areasData[0].componentVOs.length>1" @change="handleChange"> |
| | | <el-collapse class="UI-collapse" :key="areasData[0].oid+'-collapse'" v-model="collapseActiveNames" v-if="areasData[0].componentVOs.length>1" @change="handleChange"> |
| | | <el-collapse-item v-for="(componentVO,componentIndex) in areasData[0].componentVOs" :name="areasName+'-collapse-'+componentIndex"> |
| | | <template slot="title"> |
| | | {{componentVO.name}} |
| | |
| | | </el-aside> |
| | | <el-container style="height: 100%"> |
| | | <el-main v-if="uiDefineVO.centerAreas && uiDefineVO.centerAreas.length>0" :style="'height: '+centerHeight"> |
| | | <UIContentArea :key="'centerArea-'+uiDefineVO.oid" areas-name="centerArea" |
| | | cradStyle="" |
| | | :areasData="uiDefineVO.centerAreas" |
| | | :inDialog="inDialog" |
| | | :sourceData="checkedData.westAreas[0]" |
| | | :dataStore="checkedData.centerAreas[0]" |
| | | :paramVOS="paramVOS"> |
| | | </UIContentArea> |
| | | <u-i-content-area :key="'centerArea-'+uiDefineVO.oid" areas-name="centerArea" |
| | | cradStyle="" |
| | | :areasData="uiDefineVO.centerAreas" |
| | | :inDialog="inDialog" |
| | | :sourceData="checkedData.westAreas[0]" |
| | | :dataStore="checkedData.centerAreas[0]" |
| | | :paramVOS="paramVOS"></u-i-content-area> |
| | | </el-main> |
| | | <el-footer v-if="uiDefineVO.southAreas && uiDefineVO.southAreas.length>0" height="300px" style="max-height: 300px"> |
| | | <UIContentArea :key="'southArea-'+uiDefineVO.oid" areas-name="southArea" |
| | |
| | | paramVOS:{ |
| | | type:Object, |
| | | default: {} |
| | | }, |
| | | customOptions:{ |
| | | type:Object, |
| | | default: {} |
| | | } |
| | | }, |
| | | data() { |
| | | return { |
| | | btmType:'',//ä¸å¡ç±»åï¼æé¾æ¥ç±»åï¼ |
| | | content:'',//UIä¸ä¸æçåç§° |
| | | btmType:this.customOptions.btmType,//ä¸å¡ç±»åï¼æé¾æ¥ç±»åï¼ |
| | | content:this.customOptions.content,//UIä¸ä¸æçåç§° |
| | | checkedData:{ |
| | | //ååºåé䏿°æ® |
| | | westAreas:[], |
| | |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "componentVOs": [ |
| | | |
| | | { |
| | | "btmname": null, |
| | | "buttons": [], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": null, |
| | | "creator": null, |
| | | "customClass": "I:processreview#DepartmentProcessReview_web?param=xxx", |
| | | "data": null, |
| | | "description": "", |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "formDefineVO": null, |
| | | "id": null, |
| | | "lastModifier": null, |
| | | "lastModifyTime": null, |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "èªå®ä¹æ¾ç¤º", |
| | | "nameOid": null, |
| | | "oid": "A05C554A-5589-F964-2004-15CB05CBEE6D", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkLayout": "C08F5364-F23D-9602-2165-2487E3DD9E0C", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "tableDefineVO": null, |
| | | "treeDefineVO": null, |
| | | "treeTableDefineVO": null, |
| | | "ts": null, |
| | | "uiComponentType": "customer", |
| | | "uiComponentTypeText": "èªå®ä¹æ¨¡æ¿", |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | }, |
| | | { |
| | | "btmname": null, |
| | | "buttons": [ |
| | |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | }, |
| | | { |
| | | "btmname": null, |
| | | "buttons": [], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": null, |
| | | "creator": null, |
| | | "customClass": "test2:processreview#DepartmentProcessReview_web?param=xxx", |
| | | "data": null, |
| | | "description": "", |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "formDefineVO": null, |
| | | "id": null, |
| | | "lastModifier": null, |
| | | "lastModifyTime": null, |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "èªå®ä¹æ¾ç¤º", |
| | | "nameOid": null, |
| | | "oid": "A05C554A-5589-F964-2004-15CB05CBEE6D", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkLayout": "C08F5364-F23D-9602-2165-2487E3DD9E0C", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "tableDefineVO": null, |
| | | "treeDefineVO": null, |
| | | "treeTableDefineVO": null, |
| | | "ts": null, |
| | | "uiComponentType": "customer", |
| | | "uiComponentTypeText": "èªå®ä¹æ¨¡æ¿", |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | } |
| | | ], |
| | | "copyFromVersion": null, |
| | |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | } |
| | | ], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": "2022-02-08 10:40:50.000", |
| | | "creator": "developer", |
| | | "data": null, |
| | | "description": "", |
| | | "eastAreas": null, |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "id": "ProcessReviewList_web", |
| | | "lastModifier": "developer", |
| | | "lastModifyTime": "2022-07-18 17:30:51.000", |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "linkTypeFlag": false, |
| | | "linkTypeId": null, |
| | | "name": "å·¥èºè¯å®¡å表_web", |
| | | "nameOid": null, |
| | | "northAreas": [], |
| | | "oid": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "owner": null, |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "southAreas": [ |
| | | }, |
| | | { |
| | | "btmname": null, |
| | | "checkInBy": null, |
| | |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | } |
| | | }, |
| | | { |
| | | "btmname": null, |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "componentVOs": [ |
| | | { |
| | | "btmname": null, |
| | | "buttons": [], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": null, |
| | | "creator": null, |
| | | "customClass": "test:processreview#DepartmentProcessReview_web?param=xxx", |
| | | "data": null, |
| | | "description": "", |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "formDefineVO": null, |
| | | "id": null, |
| | | "lastModifier": null, |
| | | "lastModifyTime": null, |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "èªå®ä¹æ¾ç¤º", |
| | | "nameOid": null, |
| | | "oid": "A05C554A-5589-F964-2004-15CB05CBEE6D", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkLayout": "C08F5364-F23D-9602-2165-2487E3DD9E0C", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "tableDefineVO": null, |
| | | "treeDefineVO": null, |
| | | "treeTableDefineVO": null, |
| | | "ts": null, |
| | | "uiComponentType": "customer", |
| | | "uiComponentTypeText": "èªå®ä¹æ¨¡æ¿", |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | } |
| | | ], |
| | | "copyFromVersion": null, |
| | | "createTime": "2022-02-08 10:40:50.000", |
| | | "creator": "developer", |
| | | "data": null, |
| | | "description": "", |
| | | "displayExpression": "", |
| | | "enableStatus": true, |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "id": "2", |
| | | "international": null, |
| | | "lastModifier": "developer", |
| | | "lastModifyTime": "2022-07-18 17:30:52.000", |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "layoutAreaType": "center", |
| | | "layoutAreaTypeText": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "èªå®ä¹", |
| | | "nameOid": null, |
| | | "oid": "90D6FE27-C15F-CEFF-3F5E-CB349F7954EE", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "title": "èªå®ä¹", |
| | | "ts": null, |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | }, |
| | | ], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": "2022-02-08 10:40:50.000", |
| | | "creator": "developer", |
| | | "data": null, |
| | | "description": "", |
| | | "eastAreas": null, |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "id": "ProcessReviewList_web", |
| | | "lastModifier": "developer", |
| | | "lastModifyTime": "2022-07-18 17:30:51.000", |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "linkTypeFlag": false, |
| | | "linkTypeId": null, |
| | | "name": "å·¥èºè¯å®¡å表_web", |
| | | "nameOid": null, |
| | | "northAreas": [], |
| | | "oid": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "owner": null, |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "southAreas": [ |
| | | { |
| | | "btmname": null, |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "componentVOs": [ |
| | | { |
| | | "btmname": null, |
| | | "buttons": [], |
| | | "checkInBy": null, |
| | | "checkInTime": null, |
| | | "checkOutBy": null, |
| | | "checkOutTime": null, |
| | | "copyFromVersion": null, |
| | | "createTime": null, |
| | | "creator": null, |
| | | "customClass": "UI:processreview#DepartmentProcessReview_web?param=xxx", |
| | | "data": null, |
| | | "description": "", |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "formDefineVO": null, |
| | | "id": null, |
| | | "lastModifier": null, |
| | | "lastModifyTime": null, |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "èªå®ä¹æ¾ç¤º", |
| | | "nameOid": null, |
| | | "oid": "A05C554A-5589-F964-2004-15CB05CBEE6D", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkLayout": "C08F5364-F23D-9602-2165-2487E3DD9E0C", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "tableDefineVO": null, |
| | | "treeDefineVO": null, |
| | | "treeTableDefineVO": null, |
| | | "ts": null, |
| | | "uiComponentType": "customer", |
| | | "uiComponentTypeText": "èªå®ä¹æ¨¡æ¿", |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | } |
| | | ], |
| | | "copyFromVersion": null, |
| | | "createTime": "2022-02-08 10:40:50.000", |
| | | "creator": "developer", |
| | | "data": null, |
| | | "description": "", |
| | | "displayExpression": "", |
| | | "enableStatus": true, |
| | | "extendAttr": "", |
| | | "firstR": null, |
| | | "firstV": null, |
| | | "id": "2", |
| | | "international": null, |
| | | "lastModifier": "developer", |
| | | "lastModifyTime": "2022-07-18 17:30:52.000", |
| | | "lastR": null, |
| | | "lastV": null, |
| | | "layoutAreaType": "center", |
| | | "layoutAreaTypeText": null, |
| | | "lcStatus": null, |
| | | "lcStatusText": null, |
| | | "lctid": null, |
| | | "name": "è¯å®¡é®é¢å表", |
| | | "nameOid": null, |
| | | "oid": "90D6FE27-C15F-CEFF-3F5E-CB349F7954EE", |
| | | "orderNum": 2, |
| | | "owner": null, |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | | "revisionValue": null, |
| | | "secretGrade": null, |
| | | "secretGradeText": null, |
| | | "title": "è¯å®¡é®é¢å表", |
| | | "ts": null, |
| | | "uiParseClass": "", |
| | | "versionRule": null, |
| | | "versionSeq": 0, |
| | | "versionValue": null |
| | | }, |
| | | ], |
| | | "ts": null, |
| | | "versionRule": null, |
| | |
| | | "lctid": null, |
| | | "name": "è¯å®¡ä»»å¡å表", |
| | | "nameOid": null, |
| | | "oid": "2D6D571B-BB6E-677D-9764-191BC5D5D3F1", |
| | | "oid": "2D6D571B-BB6E-677D-9764-191BC5D5D3F11", |
| | | "orderNum": 1, |
| | | "owner": null, |
| | | "pkLayout": "2692E26B-8584-4561-8A03-D5921A82E490", |
| | | "pkLayout": "2692E26B-8584-4561-8A03-D5921A82E4901", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | |
| | | "id": "auditTaskTable", |
| | | "limits": null, |
| | | "linkTypeFlag": false, |
| | | "oid": "0A8030A1-2E3F-5D7D-A599-961A3829E6C5", |
| | | "oid": "0A8030A1-2E3F-5D7D-A599-961A3829E6C51", |
| | | "pageVO": null, |
| | | "queryColumns": [ |
| | | { |
| | |
| | | "lctid": null, |
| | | "name": "è¯å®¡ä»»å¡å表", |
| | | "nameOid": null, |
| | | "oid": "2692E26B-8584-4561-8A03-D5921A82E490", |
| | | "oid": "2692E26B-8584-4561-8A03-D5921A82E4901", |
| | | "orderNum": 1, |
| | | "owner": null, |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB1", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | |
| | | "lctid": null, |
| | | "name": "åç±»æ ", |
| | | "nameOid": null, |
| | | "oid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC7", |
| | | "oid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC71", |
| | | "orderNum": 1, |
| | | "owner": null, |
| | | "pkLayout": "7DDAED74-95BC-FDCE-53F4-A5E72815D5E6", |
| | | "pkLayout": "7DDAED74-95BC-FDCE-53F4-A5E72815D5E61", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |
| | |
| | | "lctid": null, |
| | | "name": "å·¥èºè¯å®¡å表", |
| | | "nameOid": null, |
| | | "oid": "E28B0555-FAF3-4F59-0EE8-64A30A77C9CB", |
| | | "oid": "E28B0555-FAF3-4F59-0EE8-64A30A77C9CB1", |
| | | "orderNum": 1, |
| | | "owner": null, |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB", |
| | | "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB1", |
| | | "revisionOid": null, |
| | | "revisionRule": null, |
| | | "revisionSeq": 0, |