-
-
-
-
+
+
-
-
-
-
-
- Example: "This standing water appeared after recent rain" or "I've
- already taken steps to address this issue"
-
+
+
+
+
+
+ Example: "This standing water appeared after recent rain" or "I've
+ already taken steps to address this issue"
+
-
-
-
- Back
-
-
- Continue
-
-
-
+
+
+
+ Back
+
+
+
diff --git a/ts/rmo/view/Compliance.vue b/ts/rmo/view/Compliance.vue
index c5d1dbf6..273efb71 100644
--- a/ts/rmo/view/Compliance.vue
+++ b/ts/rmo/view/Compliance.vue
@@ -18,7 +18,13 @@ body > .container-fluid {
-
+
@@ -30,6 +36,7 @@ body > .container-fluid {
import { computed, onMounted, ref } from "vue";
import { computedAsync } from "@vueuse/core";
+import type { Image } from "@/components/ImageUpload.vue";
import { useStoreDistrict } from "@/rmo/store/district";
import Intro from "@/rmo/content/compliance/Intro.vue";
import type { District } from "@/type/api";
@@ -46,6 +53,12 @@ const district = computedAsync(async (): Promise => {
const districts = await districtStore.list();
return districts.find((district: District) => district.slug == props.slug);
});
+function doComments(comments: string) {
+ console.log("comments", comments);
+}
+function doImages(images: Image[]) {
+ console.log("images", images);
+}
function doLocator(locator: Locator | null) {
console.log("locator", locator);
}