From 7a986189df654985ed558e5b3b5132fd6e2a9ea8 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Fri, 28 Mar 2025 17:25:31 +0100 Subject: [PATCH] Added Mobile Rendering to EntityShow --- components/EntityShow.vue | 133 ++++++++++++++++-- components/EntityShowSub.vue | 9 +- components/EntityShowSubCostCentreReport.vue | 9 +- components/EntityShowSubCreatedDocuments.vue | 9 +- components/EntityShowSubFiles.vue | 9 +- components/EntityShowSubHistoryDisplay.vue | 7 +- components/EntityShowSubInformation.vue | 9 +- components/EntityShowSubPhases.vue | 9 +- layouts/mobile.vue | 2 +- .../standardEntity/[type]/[[mode]]/[[id]].vue | 1 + 10 files changed, 178 insertions(+), 19 deletions(-) diff --git a/components/EntityShow.vue b/components/EntityShow.vue index a15ef55..1c8e2b2 100644 --- a/components/EntityShow.vue +++ b/components/EntityShow.vue @@ -11,6 +11,9 @@ const props = defineProps({ }, inModal: { type: Boolean, + }, + platform: { + type: String, } }) @@ -89,7 +92,27 @@ const getAvailableQueryStringData = (keys) => { + +
+
+ + + + +
+ + + + + + + +
+ +
diff --git a/components/EntityShowSub.vue b/components/EntityShowSub.vue index d98a5a9..041e15d 100644 --- a/components/EntityShowSub.vue +++ b/components/EntityShowSub.vue @@ -18,6 +18,10 @@ const props = defineProps({ topLevelType: { type: String, required: true + }, + platform: { + type: String, + required: true } }) @@ -71,7 +75,10 @@ setup()