pcpuma_unam_operador/components/tablas/TablaEquiposNuevos.vue

50 lines
1.4 KiB
Vue
Raw Normal View History

2022-06-07 18:50:55 +00:00
<template>
<section class="mb-5">
<h3 class="is-size-4 mb-3">Previsualización de los datos</h3>
2022-08-14 23:51:03 +00:00
<b-table :data="equipos" :per-page="30" paginated hoverable striped>
2022-06-07 18:50:55 +00:00
<b-table-column
field="numeroInventario"
label="Número de Inventario"
v-slot="props"
centered
>
2022-07-20 16:02:06 +00:00
<span>{{ props.row.numero_inventario }}</span>
2022-06-07 18:50:55 +00:00
</b-table-column>
<b-table-column
field="numeroSerie"
label="Número de Serie"
v-slot="props"
centered
>
2022-07-20 16:02:06 +00:00
<span>{{ props.row.numero_serie }}</span>
2022-06-07 18:50:55 +00:00
</b-table-column>
<b-table-column field="equipo" label="Equipo" v-slot="props" centered>
<span>{{ props.row.equipo }}</span>
</b-table-column>
<b-table-column field="tipo" label="Tipo" v-slot="props" centered>
2022-07-20 16:16:27 +00:00
<span>{{ props.row.carrito.tipoCarrito.tipo_carrito }}</span>
2022-06-07 18:50:55 +00:00
</b-table-column>
<b-table-column field="carrito" label="Carrito" v-slot="props" centered>
2022-07-20 16:02:06 +00:00
<span>{{ props.row.carrito.carrito }}</span>
2022-06-07 18:50:55 +00:00
</b-table-column>
<b-table-column field="modulo" label="Módulo" v-slot="props" centered>
2022-07-20 16:02:06 +00:00
<span>{{ props.row.carrito.modulo.modulo }}</span>
2022-06-07 18:50:55 +00:00
</b-table-column>
</b-table>
</section>
</template>
<script>
export default {
2022-08-14 23:51:03 +00:00
props: { equipos: { type: Array, required: true } },
2022-06-07 18:50:55 +00:00
}
</script>
<style></style>