2025-05-16 10:27:08 +02:00
|
|
|
<template>
|
|
|
|
<div class="flex flex-col h-fit w-full border border-primary rounded-md">
|
|
|
|
<div class="bg-primary p-2 text-white flex flex-row justify-between items-center">
|
|
|
|
<p>{{ inspectionPoint.title }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="p-2">
|
|
|
|
<p v-if="inspectionPoint.description" class="pb-2">Beschreibung: {{ inspectionPoint.description }}</p>
|
|
|
|
<hr v-if="inspectionPoint.description" />
|
|
|
|
<label :for="inspectionPoint.id">{{ inspectionPoint.type == "number" ? "Zahl" : "Freitext" }}</label>
|
|
|
|
<input
|
|
|
|
v-if="inspectionPoint.type == 'number'"
|
|
|
|
:id="inspectionPoint.id"
|
|
|
|
:name="inspectionPoint.id"
|
|
|
|
type="number"
|
|
|
|
required
|
|
|
|
v-model="value"
|
|
|
|
/>
|
|
|
|
<textarea v-else :id="inspectionPoint.id" :name="inspectionPoint.id" required class="h-18" v-model="value" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { defineComponent, type PropType } from "vue";
|
2025-06-04 12:49:42 +02:00
|
|
|
import type { InspectionPointViewModel } from "@/viewmodels/admin/unit/inspection/inspectionPlan.models";
|
2025-05-16 10:27:08 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default defineComponent({
|
|
|
|
props: {
|
|
|
|
inspectionPoint: {
|
|
|
|
type: Object as PropType<InspectionPointViewModel>,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
modelValue: {
|
|
|
|
type: String,
|
|
|
|
default: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
emits: ["update:model-value"],
|
|
|
|
computed: {
|
|
|
|
value: {
|
|
|
|
get() {
|
|
|
|
return this.modelValue;
|
|
|
|
},
|
|
|
|
set(val: string | number) {
|
|
|
|
this.$emit("update:model-value", val.toString());
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|