Creacion del admin
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="columns">
|
||||
<b-field class="column" label="Apertura de inscripciones">
|
||||
<b-datepicker
|
||||
placeholder="Type or select a date..."
|
||||
icon="calendar-today"
|
||||
editable
|
||||
>
|
||||
</b-datepicker>
|
||||
</b-field>
|
||||
|
||||
<b-field class="column" label="Termino de inscripciones">
|
||||
<b-datepicker
|
||||
placeholder="Type or select a date..."
|
||||
icon="calendar-today"
|
||||
editable
|
||||
>
|
||||
</b-datepicker>
|
||||
</b-field>
|
||||
</div>
|
||||
|
||||
<div class="has-text-centered pt-3">
|
||||
<b-button class="is-success"> Asignar Fechas </b-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script></script>
|
||||
|
||||
<style scoped></style>
|
||||
@@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div>
|
||||
<b-table class="box">
|
||||
<b-table-column field="numeroCuenta" label="Número de cuenta" centered>
|
||||
</b-table-column>
|
||||
|
||||
<b-table-column field="ticket" label="Ticket" centered>
|
||||
<b-button type="is-info">Ver ticket</b-button>
|
||||
</b-table-column>
|
||||
</b-table>
|
||||
</div>
|
||||
</template>
|
||||
+20
-2
@@ -1,7 +1,25 @@
|
||||
<template>
|
||||
<div class="container"></div>
|
||||
<div class="container">
|
||||
<section class="box">
|
||||
<p class="subtitle is-3">Asignar fechas de inscripción</p>
|
||||
|
||||
<FechasInscripcion />
|
||||
</section>
|
||||
|
||||
<TableTickets />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script></script>
|
||||
<script>
|
||||
import TableTickets from '~/components/admin/tableTickets.vue'
|
||||
import FechasInscripcion from '~/components/admin/fechasInscripcion.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
TableTickets,
|
||||
FechasInscripcion,
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
|
||||
Reference in New Issue
Block a user