From 060d0dd95f68ea0ef6a93d46c9995c89c1000d8f Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 28 Apr 2026 15:22:20 +0000 Subject: [PATCH] Add compliance card detail information display --- ts/components/PublicReportCard.vue | 10 +++ ts/components/PublicReportCardCompliance.vue | 91 ++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 ts/components/PublicReportCardCompliance.vue diff --git a/ts/components/PublicReportCard.vue b/ts/components/PublicReportCard.vue index e375e21e..2fb518c4 100644 --- a/ts/components/PublicReportCard.vue +++ b/ts/components/PublicReportCard.vue @@ -16,6 +16,10 @@
+ + + Compliance Report + Nuisance Report @@ -88,6 +92,10 @@
+
+ +
+
@@ -136,11 +144,13 @@ import { computed } from "vue"; import MapMultipoint from "@/components/MapMultipoint.vue"; import TimeRelative from "@/components/TimeRelative.vue"; +import PublicReportCardCompliance from "@/components/PublicReportCardCompliance.vue"; import PublicReportCardNuisance from "@/components/PublicReportCardNuisance.vue"; import PublicReportCardWater from "@/components/PublicReportCardWater.vue"; import { formatAddress } from "@/format"; import { PublicReport, + PublicReportCompliance, PublicReportNuisance, PublicReportWater, } from "@/type/api"; diff --git a/ts/components/PublicReportCardCompliance.vue b/ts/components/PublicReportCardCompliance.vue new file mode 100644 index 00000000..17841f74 --- /dev/null +++ b/ts/components/PublicReportCardCompliance.vue @@ -0,0 +1,91 @@ + +