comparison client/src/components/importoverview/AdditionalDetail.vue @ 2605:11fd7ee37f10

overview2: added stretch zoom functionality
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 12 Mar 2019 17:08:49 +0100
parents 5d0e5159190f
children 13377f2a5c42
comparison
equal deleted inserted replaced
2603:8d767359fddb 2605:11fd7ee37f10
1 <template> 1 <template>
2 <div> 2 <div>
3 <FairwayDimensionDetail v-if="isFairwayDimension"></FairwayDimensionDetail> 3 <FairwayDimensionDetail
4 :entry="entry"
5 v-if="isFairwayDimension"
6 ></FairwayDimensionDetail>
4 <ApprovedGaugeMeasurementDetail 7 <ApprovedGaugeMeasurementDetail
8 :entry="entry"
5 v-if="isApprovedGaugeMeasurement" 9 v-if="isApprovedGaugeMeasurement"
6 ></ApprovedGaugeMeasurementDetail> 10 ></ApprovedGaugeMeasurementDetail>
7 <BottleneckDetail v-if="isBottleneck"></BottleneckDetail> 11 <BottleneckDetail :entry="entry" v-if="isBottleneck"></BottleneckDetail>
8 <StretchDetail v-if="isStretch"></StretchDetail> 12 <SoundingResultDetail
9 <SoundingResultDetail v-if="isSoundingResult"></SoundingResultDetail> 13 :entry="entry"
14 v-if="isSoundingResult"
15 ></SoundingResultDetail>
10 </div> 16 </div>
11 </template> 17 </template>
12 18
13 <script> 19 <script>
14 /* This is Free Software under GNU Affero General Public License v >= 3.0 20 /* This is Free Software under GNU Affero General Public License v >= 3.0
29 name: "additionaldetail", 35 name: "additionaldetail",
30 props: ["entry"], 36 props: ["entry"],
31 components: { 37 components: {
32 SoundingResultDetail: () => import("./SoundingResultDetail.vue"), 38 SoundingResultDetail: () => import("./SoundingResultDetail.vue"),
33 BottleneckDetail: () => import("./BottleneckDetail.vue"), 39 BottleneckDetail: () => import("./BottleneckDetail.vue"),
34 StretchDetail: () => import("./StretchDetails.vue"),
35 ApprovedGaugeMeasurementDetail: () => 40 ApprovedGaugeMeasurementDetail: () =>
36 import("./ApprovedGaugeMeasurementDetail.vue"), 41 import("./ApprovedGaugeMeasurementDetail.vue"),
37 FairwayDimensionDetail: () => import("./FairwayDimension.vue") 42 FairwayDimensionDetail: () => import("./FairwayDimension.vue")
38 }, 43 },
39 computed: { 44 computed: {