nada importante
This commit is contained in:
+3
-1
@@ -41,7 +41,9 @@
|
||||
"plugin:vue/essential",
|
||||
"eslint:recommended"
|
||||
],
|
||||
"rules": {},
|
||||
"rules": {
|
||||
"no-console": "off"
|
||||
},
|
||||
"parserOptions": {
|
||||
"parser": "babel-eslint"
|
||||
}
|
||||
|
||||
@@ -32,29 +32,15 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<tr v-for="m in mesas" :key="m.id_evento">
|
||||
<th scope="row" ><input type="radio" name="mesaL" value="1" /></th>
|
||||
<td>{{ mesa.nombre_evento }}</td>
|
||||
<td>{{ mesa.hora }}</td>
|
||||
<td>{{ mesa.lugar }}</td>
|
||||
<td>{{ mesa.cupo }}</td>
|
||||
<td >{{ m.nombre_evento }}</td>
|
||||
<td>{{ m.hora }}</td>
|
||||
<td>{{ m.lugar }}</td>
|
||||
<td>{{ m.cupo }}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th scope="row" ><input type="radio" name="mesaL" value="2" /></th>
|
||||
<td>{{ mesa.nombre_evento }}</td>
|
||||
<td>{{ mesa.hora }}</td>
|
||||
<td>{{ mesa.lugar }}</td>
|
||||
<td>{{ mesa.cupo }}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th scope="row" ><input type="radio" name="mesaL" value="3" /></th>
|
||||
<td>{{ mesa.nombre_evento }}</td>
|
||||
<td>{{ mesa.hora }}</td>
|
||||
<td>{{ mesa.lugar }}</td>
|
||||
<td>{{ mesa.cupo }}</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
@@ -250,10 +236,13 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
//import axios from 'axios'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
mesa: {
|
||||
mesas: [{
|
||||
id_evento: 1,
|
||||
tipo_evento: 'Mesa tematica',
|
||||
nombre_evento: 'Mesa 9: Educación ambiental y bioética.',
|
||||
@@ -261,13 +250,55 @@
|
||||
lugar: 'Sala 1',
|
||||
hora: '12:00',
|
||||
dia: 'Lunes',
|
||||
},{
|
||||
id_evento: 2,
|
||||
tipo_evento: 'Mesa tematica',
|
||||
nombre_evento: 'Mesa 10: asdasdasdasdasd.',
|
||||
cupo: 60,
|
||||
lugar: 'Sala 12',
|
||||
hora: '13:00',
|
||||
dia: 'Lunes',
|
||||
}],
|
||||
|
||||
mesa:{
|
||||
id_evento: 2,
|
||||
tipo_evento: 'Mesa tematica',
|
||||
nombre_evento: 'Mesa 10: asdasdasdasdasd.',
|
||||
cupo: 60,
|
||||
lugar: 'Sala 12',
|
||||
hora: '13:00',
|
||||
dia: 'Lunes',
|
||||
},
|
||||
taller:null,
|
||||
ponencia:null,
|
||||
check_L: false,
|
||||
check_M: false,
|
||||
check_Mi: false,
|
||||
}
|
||||
},
|
||||
|
||||
/*
|
||||
mounted(){
|
||||
//alert('hola desde mounted')
|
||||
axios
|
||||
.get('https://fbd98380.ngrok.io/traer_eventos')
|
||||
.then((res)=>{
|
||||
console.log(res.data.data)
|
||||
this.mesaa = res.data.data.mesa
|
||||
this.taller = res.data.data.taller
|
||||
this.ponencia = res.data.data.ponencia
|
||||
|
||||
})
|
||||
.catch((err)=>{
|
||||
console.log(err)
|
||||
})
|
||||
|
||||
}*/
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
Reference in New Issue
Block a user