|
|
|
@ -33,7 +33,7 @@
|
|
|
|
|
</thead> |
|
|
|
|
<tbody class="table_content"> |
|
|
|
|
<tr v-for="zone in zones" :key="zone.zone"> |
|
|
|
|
<td class="zone"> |
|
|
|
|
<td v-if="zone.zone !== 'ton'" class="zone"> |
|
|
|
|
<router-link |
|
|
|
|
:to="{ |
|
|
|
|
name: 'GetZ', |
|
|
|
@ -44,7 +44,10 @@
|
|
|
|
|
{{ zone.zone }} |
|
|
|
|
</router-link> |
|
|
|
|
</td> |
|
|
|
|
<td style="display: flex; justify-content: flex-end"> |
|
|
|
|
<td |
|
|
|
|
v-if="zone.zone !== 'ton'" |
|
|
|
|
style="display: flex; justify-content: flex-end" |
|
|
|
|
> |
|
|
|
|
<ZonePricing :zone="zone" /> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|