diff --git a/aas-web-ui/src/components/AppNavigation/AASListDetails.vue b/aas-web-ui/src/components/AppNavigation/AASListDetails.vue index 97300cb..0ca4f5a 100644 --- a/aas-web-ui/src/components/AppNavigation/AASListDetails.vue +++ b/aas-web-ui/src/components/AppNavigation/AASListDetails.vue @@ -40,7 +40,7 @@ - + @@ -50,14 +50,26 @@ :model-type="'AAS'" :id-type="'Identification (ID)'" :name-type="'idShort'"> + - + + + import { defineComponent } from 'vue'; + import AdministrativeInformationElement from '@/components/UIComponents/AdministrativeInformationElement.vue'; import AssetInformation from '@/components/UIComponents/AssetInformation.vue'; import DescriptionElement from '@/components/UIComponents/DescriptionElement.vue'; import DisplayNameElement from '@/components/UIComponents/DisplayNameElement.vue'; @@ -89,6 +102,7 @@ name: 'AASListDetails', components: { IdentificationElement, + AdministrativeInformationElement, DisplayNameElement, DescriptionElement, AssetInformation, diff --git a/aas-web-ui/src/components/SubmodelElementView.vue b/aas-web-ui/src/components/SubmodelElementView.vue index 24cc24e..cb34812 100644 --- a/aas-web-ui/src/components/SubmodelElementView.vue +++ b/aas-web-ui/src/components/SubmodelElementView.vue @@ -13,9 +13,23 @@ :model-type="submodelElementData.modelType" :id-type="'Identification (ID)'" :name-type="'idShort'"> + + + + + + + + + {{ administrativeInformationTitle }} + + + + + + + + + + {{ + '(' + creator.type + ') ' + }}{{ creator.value }} + + + + + {{ + administrativeInformationObject.creator.keys.length === 1 + ? 'Creator:' + : 'Creators:' + }} + + + + + {{ creator.type }} + {{ creator.value }} + + + + + + + + + {{ 'Version:' }}{{ + administrativeInformationObject.version + }} + + + {{ 'Revision:' }}{{ + administrativeInformationObject.revision + }} + + + + + + + + + + + {{ 'Template ID:' }} + + + + + {{ + copyIcon + }} + {{ administrativeInformationObject.templateId }} + + + + + + + + + + + + + + + + + + + + + + + + + + +