vehicle info added
This commit is contained in:
@@ -18,12 +18,29 @@ import { ref } from 'vue';
|
||||
<template>
|
||||
<a
|
||||
@click="toogle"
|
||||
class="btn-text mt-3"
|
||||
>Ver más <i class="fa-solid" :class="[isShow ? 'fa-chevron-up' : 'fa-chevron-down']"></i></a>
|
||||
class="btn-text mt-4 mb-2"
|
||||
>Información del vehiculo <i class="fa-solid" :class="[isShow ? 'fa-chevron-up' : 'fa-chevron-down']"></i></a>
|
||||
|
||||
<div v-if="isShow">
|
||||
<div class="divider"></div>
|
||||
<h2 class="my-3">Información del vehiculo</h2>
|
||||
<!-- <h2 class="my-3">Información del vehiculo</h2> -->
|
||||
<div class="row my-2">
|
||||
<div class="col-lg-6">
|
||||
<p>Código: <span>{{ vehicle.vehicle_code }}</span></p>
|
||||
<p>Tipo de transporte: <span>{{ vehicle.truck_type }}</span></p>
|
||||
<p>Número de Serie: <span>{{ vehicle.vehicle_number }}</span></p>
|
||||
<p>Segmento: <span>{{ vehicle._categories }}</span></p>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<p>Placas Tracto Camión: <span>{{ vehicle.circulation_serial_number }}</span></p>
|
||||
<p>Placas Remolque 1: <span>{{ vehicle.trailer_plate_1 }}</span></p>
|
||||
<p>Placas Remolque 2: <span>{{ vehicle.trailer_plate_2 }}</span></p>
|
||||
<p>Base de carga: <span>{{ vehicle.city }}, {{ vehicle.state }}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<p>Información Adicional del Transporte: <span>{{ vehicle.notes }}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -32,4 +49,16 @@ import { ref } from 'vue';
|
||||
font-size: 1.2rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
color: #323032;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
p span {
|
||||
color: #323032;
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user