43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html v-bind:lang="$i18n.locale">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
</head>
|
|
|
|
<body>
|
|
<table class="grid column-oriented">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ $t('postalCode') }}</th>
|
|
<th>{{ $t('zoneFk') }}</th>
|
|
<th>{{ $t('price') }}</th>
|
|
<th>{{ $t('zone') }}</th>
|
|
<th>{{ $t('warehouse') }}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="zone in zones" v-bind:key="zone.zoneFk">
|
|
<td>{{ zone.zn.name }}</td>
|
|
<td>{{ zone.zoneFk }}</td>
|
|
<td>{{ zone.z.price }}</td>
|
|
<td>{{ zone.z.name }}</td>
|
|
<td>{{ zone.w.name }}</td>
|
|
<td>
|
|
<a v-bind:href="'https://salix.verdnatura.es/#!/zone/'+
|
|
zone.zoneFk+
|
|
'/location?q=%7B%22search%22:%22'+
|
|
zone.zn.name+
|
|
'%22%7D'">
|
|
https://salix.verdnatura.es/#!/zone/
|
|
{{zone.zoneFk}}
|
|
/location?q=%7B%22search%22:%22
|
|
{{zone.zn.name}}
|
|
%22%7D</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|