80 lines
2.1 KiB
Vue
80 lines
2.1 KiB
Vue
<template>
|
|
<div class="container">
|
|
<p class="is-size-2">Editar información del alumno</p>
|
|
<br>
|
|
<div class="formulario">
|
|
<b-field label="Correo eletrónico alumno">
|
|
<b-input type="" v-model="nuevo.correo" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Correo eletrónico responsable">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Número de cuenta">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Fecha de inicio">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Fecha de fin">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Dirección">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Teléfono">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Fecha de nacimiento">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Institución">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Dependecia">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="Fecha de registro">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<b-field label="ID status">
|
|
<b-input type="" value=""></b-input>
|
|
</b-field>
|
|
<br>
|
|
<b-button class="is-info">Regresar</b-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
name: '',
|
|
nuevo: {
|
|
correo: '',
|
|
correoResponsable: '',
|
|
noCuenta: null,
|
|
fechaInicio: null,
|
|
fechaFin: null,
|
|
cartaAceptacion: null,
|
|
direccion: null,
|
|
telefono: null,
|
|
fechaNacimiento: null,
|
|
cuestionarioA: null,
|
|
cuestionarioP: null,
|
|
informeGlobal: null,
|
|
vistoBuenoAcatlan: null,
|
|
cartaTermino: null,
|
|
institucion: null,
|
|
dependencia: null,
|
|
programa: null,
|
|
clavePrograma: null,
|
|
fechaRegistro: null,
|
|
idStatus: null,
|
|
acatlanContigo: null
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|