Added Rendering Components
This commit is contained in:
@@ -9,7 +9,7 @@ const props = defineProps({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<span v-if="props.row.infoData.streetNumber">{{props.row.infoData.streetNumber}},</span>
|
<span v-if="props.row.infoData.street">{{props.row.infoData.street}},</span>
|
||||||
<span v-if="props.row.infoData.special">{{props.row.infoData.special}},</span>
|
<span v-if="props.row.infoData.special">{{props.row.infoData.special}},</span>
|
||||||
<span v-if="props.row.infoData.zip">{{props.row.infoData.zip}},</span>
|
<span v-if="props.row.infoData.zip">{{props.row.infoData.zip}},</span>
|
||||||
<span v-if="props.row.infoData.city">{{props.row.infoData.city}}</span>
|
<span v-if="props.row.infoData.city">{{props.row.infoData.city}}</span>
|
||||||
|
|||||||
13
components/columnRenderings/sellingPriceComposedMaterial.vue
Normal file
13
components/columnRenderings/sellingPriceComposedMaterial.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup>
|
||||||
|
const props = defineProps({
|
||||||
|
row: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
default: {}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<span v-if="props.row.sellingPriceComposed">{{ useCurrency(props.row.sellingPriceComposed.material)}}</span>
|
||||||
|
</template>
|
||||||
13
components/columnRenderings/sellingPriceComposedTotal.vue
Normal file
13
components/columnRenderings/sellingPriceComposedTotal.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup>
|
||||||
|
const props = defineProps({
|
||||||
|
row: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
default: {}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<span v-if="props.row.sellingPriceComposed">{{ useCurrency(props.row.sellingPriceComposed.total) }}</span>
|
||||||
|
</template>
|
||||||
13
components/columnRenderings/sellingPriceComposedWorker.vue
Normal file
13
components/columnRenderings/sellingPriceComposedWorker.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup>
|
||||||
|
const props = defineProps({
|
||||||
|
row: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
default: {}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<span v-if="props.row.sellingPriceComposed">{{ useCurrency(props.row.sellingPriceComposed.worker) }}</span>
|
||||||
|
</template>
|
||||||
Reference in New Issue
Block a user