Establish basic pattern for compliance data flow
We can get location, images, and string data. It's the trifecta.
This commit is contained in:
parent
8d6976c770
commit
a6912929a7
3 changed files with 81 additions and 75 deletions
|
|
@ -26,8 +26,8 @@
|
|||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
|
||||
import type { District } from "@/type/api";
|
||||
import { router } from "@/rmo/router";
|
||||
import type { District } from "@/type/api";
|
||||
import HeaderCompliance from "@/rmo/components/HeaderCompliance.vue";
|
||||
import ProgressBarCompliance from "@/rmo/components/ProgressBarCompliance.vue";
|
||||
import AddressAndMapLocator from "@/rmo/components/AddressAndMapLocator.vue";
|
||||
|
|
@ -44,6 +44,8 @@ const props = defineProps<Props>();
|
|||
const locator = ref<Locator | null>(null);
|
||||
function doContinue() {
|
||||
emit("doLocator", locator.value);
|
||||
router.push("./concern");
|
||||
// re-add when we have the concern data to show
|
||||
// router.push("./concern");
|
||||
router.push("./evidence");
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue