Add basic layout of the contact review

This commit is contained in:
Eli Ribble 2026-05-15 17:19:06 +00:00
parent d020a33642
commit 8b203908a0
No known key found for this signature in database
5 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<template>
<p>actions</p>
</template>

View file

@ -0,0 +1,3 @@
<template>
<p>detail</p>
</template>

View file

@ -0,0 +1,3 @@
<template>
<p>list</p>
</template>

View file

@ -26,6 +26,7 @@ import NotFound from "@/view/NotFound.vue";
import OAuthRefreshArcgis from "@/view/OAuthRefreshArcgis.vue";
import Operations from "@/view/Operations.vue";
import Planning from "@/view/Planning.vue";
import ReviewContact from "@/view/review/Contact.vue";
import ReviewMailer from "@/view/review/Mailer.vue";
import ReviewPool from "@/view/review/Pool.vue";
import ReviewRoot from "@/view/review/Root.vue";
@ -163,6 +164,11 @@ const routes: RouteRecordRaw[] = [
name: "Review",
component: ReviewRoot,
},
{
path: "/_/review/contact",
name: "Contact Review",
component: ReviewContact,
},
{
path: "/_/review/mailer",
name: "Mailer Review",

View file

@ -0,0 +1,19 @@
<template>
<ThreeColumn>
<template #left>
<ReviewContactColumnList />
</template>
<template #center>
<ReviewContactColumnDetail />
</template>
<template #right>
<ReviewContactColumnAction />
</template>
</ThreeColumn>
</template>
<script setup lang="ts">
import ThreeColumn from "@/components/layout/ThreeColumn.vue";
import ReviewContactColumnAction from "@/components/ReviewContactColumnAction.vue";
import ReviewContactColumnDetail from "@/components/ReviewContactColumnDetail.vue";
import ReviewContactColumnList from "@/components/ReviewContactColumnList.vue";
</script>