npm run build
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
.form-group
|
||||
input#exampleInputEmail1.form-control(type='text' aria-describedby='emailHelp' placeholder='Nombre de la Ponencia' v-model="nombrepon")
|
||||
.form-group
|
||||
select.custom-select
|
||||
option(selected='' v-model="mesapon") Seleccione la mesa
|
||||
select.custom-select(v-model="mesapon")
|
||||
option(selected='') Seleccione la mesa
|
||||
option(v-for="mesa in mesas" :value="mesa") {{mesa}}
|
||||
.custom-file
|
||||
input.custom-file-input(type='file' required='' @change="previewPonencia" accept=".doc,.docx")
|
||||
@@ -107,8 +107,6 @@ export default {
|
||||
var formData = new FormData()
|
||||
this.data.id_persona = this.$route.params.id
|
||||
if (this.ponencia) {
|
||||
// eslint-disable-next-line
|
||||
console.log('entre')
|
||||
this.data.ponencia = {}
|
||||
this.data.ponencia.autor_principal = this.autor
|
||||
this.data.ponencia.segundo_autor = this.autorsegundo
|
||||
@@ -128,6 +126,8 @@ export default {
|
||||
formData.append('cartel', JSON.stringify(this.data.cartel))
|
||||
formData.append('cartel', this.cartelfile)
|
||||
}
|
||||
// eslint-disable-next-line
|
||||
console.log(this.data)
|
||||
|
||||
formData.append('id_persona', this.$route.params.id)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user