2026-04-06 22:38:17 +00:00
|
|
|
<template>
|
|
|
|
|
<div class="container-fluid px-3 py-3">
|
|
|
|
|
<HeaderCompliance :district="district" />
|
2026-04-07 00:04:40 +00:00
|
|
|
<ProgressBarCompliance :step="2" />
|
2026-04-06 22:38:17 +00:00
|
|
|
|
|
|
|
|
<!-- Main Content -->
|
|
|
|
|
<main>
|
|
|
|
|
<h2 class="h4 mb-3">Action requested for this property</h2>
|
|
|
|
|
|
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
|
|
|
<p class="mb-2">
|
|
|
|
|
The {{ district.name }} has identified a possible mosquito breeding
|
|
|
|
|
source at this property during a recent inspection.
|
|
|
|
|
</p>
|
|
|
|
|
<p class="mb-0">
|
|
|
|
|
Please confirm the property address and provide any photos, access
|
|
|
|
|
details, and contact information to help us review and resolve this
|
|
|
|
|
issue quickly.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="d-grid mt-4">
|
2026-04-07 00:04:40 +00:00
|
|
|
<RouterLink class="btn btn-primary btn-lg" to="./compliance/address">
|
2026-04-06 22:38:17 +00:00
|
|
|
Get Started</RouterLink
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { District } from "@/type/api";
|
|
|
|
|
import HeaderCompliance from "@/rmo/components/HeaderCompliance.vue";
|
2026-04-07 00:04:40 +00:00
|
|
|
import ProgressBarCompliance from "@/rmo/components/ProgressBarCompliance.vue";
|
2026-04-06 22:38:17 +00:00
|
|
|
interface Props {
|
|
|
|
|
district: District;
|
|
|
|
|
}
|
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
|
</script>
|