From 4f9617aa2f02911c7827f7cdcc54c080dde53414 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 3 Apr 2026 16:37:09 +0000 Subject: [PATCH] Add RMO water page, start district layout --- html/template/rmo/water.html | 524 --------------------------------- ts/rmo/content/Home.vue | 82 ++++++ ts/rmo/router.ts | 6 + ts/rmo/view/Home.vue | 107 +------ ts/rmo/view/Water.vue | 527 ++++++++++++++++++++++++++++++++++ ts/rmo/view/district/Home.vue | 45 +++ 6 files changed, 664 insertions(+), 627 deletions(-) create mode 100644 ts/rmo/content/Home.vue create mode 100644 ts/rmo/view/Water.vue create mode 100644 ts/rmo/view/district/Home.vue diff --git a/html/template/rmo/water.html b/html/template/rmo/water.html index 5aa2af71..a417b9e7 100644 --- a/html/template/rmo/water.html +++ b/html/template/rmo/water.html @@ -2,22 +2,6 @@ {{ define "title" }}Report Standing Water{{ end }} {{ define "extraheader" }} - diff --git a/ts/rmo/router.ts b/ts/rmo/router.ts index f88b8f89..ce67270b 100644 --- a/ts/rmo/router.ts +++ b/ts/rmo/router.ts @@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from "vue-router"; import type { RouteRecordRaw } from "vue-router"; import Home from "@/rmo/view/Home.vue"; import Nuisance from "@/rmo/view/Nuisance.vue"; +import Water from "@/rmo/view/Water.vue"; const routes: RouteRecordRaw[] = [ { path: "/", @@ -13,6 +14,11 @@ const routes: RouteRecordRaw[] = [ name: "Nuisance", component: Nuisance, }, + { + path: "/water", + name: "Water", + component: Water, + }, ]; export const router = createRouter({ diff --git a/ts/rmo/view/Home.vue b/ts/rmo/view/Home.vue index c75c13d3..16401084 100644 --- a/ts/rmo/view/Home.vue +++ b/ts/rmo/view/Home.vue @@ -1,114 +1,15 @@ -