diff --git a/api/postman.json b/api/postman.json index b174f56d2..e0d2a8b3c 100644 --- a/api/postman.json +++ b/api/postman.json @@ -2025,4 +2025,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/web/src/components/PhotoButton.vue b/web/src/components/PhotoButton.vue new file mode 100644 index 000000000..5ff48088b --- /dev/null +++ b/web/src/components/PhotoButton.vue @@ -0,0 +1,11 @@ + + + diff --git a/web/src/components/cards/BuildingInfoCard.vue b/web/src/components/cards/BuildingInfoCard.vue new file mode 100644 index 000000000..51978d7b2 --- /dev/null +++ b/web/src/components/cards/BuildingInfoCard.vue @@ -0,0 +1,19 @@ + + + diff --git a/web/src/components/cards/BuildingSelectCard.vue b/web/src/components/cards/BuildingSelectCard.vue new file mode 100644 index 000000000..6ecc9e736 --- /dev/null +++ b/web/src/components/cards/BuildingSelectCard.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/web/src/components/cards/RoundSelectCard.vue b/web/src/components/cards/RoundSelectCard.vue new file mode 100644 index 000000000..95ba6081a --- /dev/null +++ b/web/src/components/cards/RoundSelectCard.vue @@ -0,0 +1,32 @@ + + + diff --git a/web/src/components/models/RoundPlanning.ts b/web/src/components/models/RoundPlanning.ts new file mode 100644 index 000000000..8c8a2caca --- /dev/null +++ b/web/src/components/models/RoundPlanning.ts @@ -0,0 +1,8 @@ +import Round from "./Round"; + +export default interface RoundPlanning { + date: string; + round: Round | null; + showinfo: boolean; + edit: boolean; +} diff --git a/web/src/router/index.ts b/web/src/router/index.ts index 3620cb8fc..ee9e9271b 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -112,7 +112,7 @@ const routes: any[] = [ }, }, { - path: "/ronde/plannen", + path: "/ronde/:id/plannen", name: "round_plan", component: RoundPlanner, meta: { diff --git a/web/src/views/dashboard/Round.vue b/web/src/views/dashboard/Round.vue index f0ddaa24d..92067bae6 100644 --- a/web/src/views/dashboard/Round.vue +++ b/web/src/views/dashboard/Round.vue @@ -8,14 +8,6 @@ > Nieuwe ronde maken - - Nieuwe ronde Plannen -
-

Ronde Korenmarkt

+
+

{{ round?.name }}

+
+ +

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod @@ -31,7 +39,11 @@

Planning

- +
@@ -65,16 +77,31 @@