Add basic layout of the contact review
This commit is contained in:
parent
d020a33642
commit
8b203908a0
5 changed files with 34 additions and 0 deletions
3
ts/components/ReviewContactColumnAction.vue
Normal file
3
ts/components/ReviewContactColumnAction.vue
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<p>actions</p>
|
||||||
|
</template>
|
||||||
3
ts/components/ReviewContactColumnDetail.vue
Normal file
3
ts/components/ReviewContactColumnDetail.vue
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<p>detail</p>
|
||||||
|
</template>
|
||||||
3
ts/components/ReviewContactColumnList.vue
Normal file
3
ts/components/ReviewContactColumnList.vue
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<p>list</p>
|
||||||
|
</template>
|
||||||
|
|
@ -26,6 +26,7 @@ import NotFound from "@/view/NotFound.vue";
|
||||||
import OAuthRefreshArcgis from "@/view/OAuthRefreshArcgis.vue";
|
import OAuthRefreshArcgis from "@/view/OAuthRefreshArcgis.vue";
|
||||||
import Operations from "@/view/Operations.vue";
|
import Operations from "@/view/Operations.vue";
|
||||||
import Planning from "@/view/Planning.vue";
|
import Planning from "@/view/Planning.vue";
|
||||||
|
import ReviewContact from "@/view/review/Contact.vue";
|
||||||
import ReviewMailer from "@/view/review/Mailer.vue";
|
import ReviewMailer from "@/view/review/Mailer.vue";
|
||||||
import ReviewPool from "@/view/review/Pool.vue";
|
import ReviewPool from "@/view/review/Pool.vue";
|
||||||
import ReviewRoot from "@/view/review/Root.vue";
|
import ReviewRoot from "@/view/review/Root.vue";
|
||||||
|
|
@ -163,6 +164,11 @@ const routes: RouteRecordRaw[] = [
|
||||||
name: "Review",
|
name: "Review",
|
||||||
component: ReviewRoot,
|
component: ReviewRoot,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/_/review/contact",
|
||||||
|
name: "Contact Review",
|
||||||
|
component: ReviewContact,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/_/review/mailer",
|
path: "/_/review/mailer",
|
||||||
name: "Mailer Review",
|
name: "Mailer Review",
|
||||||
|
|
|
||||||
19
ts/view/review/Contact.vue
Normal file
19
ts/view/review/Contact.vue
Normal 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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue