This commit is contained in:
Andres2908 2022-07-21 14:00:56 -05:00
parent b5e7f63125
commit 3de0794f66
3 changed files with 7 additions and 4 deletions

View File

@ -89,7 +89,6 @@ export default {
.get(`${process.env.api}/modelo/`, this.$getToken.token()) .get(`${process.env.api}/modelo/`, this.$getToken.token())
.then((res) => { .then((res) => {
this.modelos = res.data this.modelos = res.data
console.log(res.data)
}) })
.catch((err) => { .catch((err) => {
this.$alertsGenericos.imprimirError(this.$buefy, err.response.data) this.$alertsGenericos.imprimirError(this.$buefy, err.response.data)

View File

@ -30,6 +30,10 @@
<b-table-column field="correo" label="Correo" v-slot="props" centered> <b-table-column field="correo" label="Correo" v-slot="props" centered>
<span>{{ props.row.correo }}</span> <span>{{ props.row.correo }}</span>
</b-table-column> </b-table-column>
<b-table-column field="dominio" label="Dominio" v-slot="props" centered>
<span>{{ props.row.dominio }}</span>
</b-table-column>
</b-table> </b-table>
</section> </section>
</template> </template>
@ -84,7 +88,7 @@ export default {
} }
</script> </script>
<style > <style>
.pointer { .pointer {
cursor: pointer; cursor: pointer;
} }

View File

@ -33,8 +33,8 @@ export default {
], ],
}, },
env: { env: {
api: 'http://localhost:3000', // api: 'http://localhost:3000',
// api: 'https://venus.acatlan.unam.mx/pcpumaUnam_test', api: 'https://venus.acatlan.unam.mx/pcpumaUnam_test',
// api: 'https://pmodulospcpuma.unam.mx/pcpumaUnam_test', // api: 'https://pmodulospcpuma.unam.mx/pcpumaUnam_test',
// api: 'https://modulospcpuma.unam.mx/', // api: 'https://modulospcpuma.unam.mx/',
path: '/socket.io/', path: '/socket.io/',