Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 48b20d5c70 | |||
| e2061cc45f | |||
| 7964837e27 |
@@ -1,8 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
|
||||||
<div>
|
|
||||||
<h1>Direcciones</h1>
|
|
||||||
</div>
|
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<form class="mt-4" role="form" data-toggle="validator" >
|
<form class="mt-4" role="form" data-toggle="validator" >
|
||||||
@@ -186,7 +182,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -233,3 +229,6 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -25,25 +25,23 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<MainMenu></MainMenu>
|
||||||
|
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import MainMenu from './MainMenu'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
components: {
|
||||||
return {
|
MainMenu,
|
||||||
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
|
|||||||
@@ -12,24 +12,26 @@
|
|||||||
:backdrop-variant="variant"
|
:backdrop-variant="variant"
|
||||||
backdrop
|
backdrop
|
||||||
shadow
|
shadow
|
||||||
|
bg-variant="white" text-variant="primary"
|
||||||
>
|
>
|
||||||
<div class="px-3 mt-3 py-2 d-flex align-items-center profi-main-text-sty">
|
<div class="px-3 mt-3 pt-2 d-flex align-items-center profi-main-text-sty">
|
||||||
<font-awesome-icon icon="user" class="mr-2" />
|
<font-awesome-icon icon="user" class="mr-2" />
|
||||||
<a href="#" class="text-decoration-none">
|
<a href="#" class="text-decoration-none">
|
||||||
<h5 class="my-auto">Iniciar sesión</h5>
|
<h5 class="my-auto">Iniciar sesión</h5>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<hr class="mx-3 mb-3">
|
||||||
|
|
||||||
<h6 class="px-3 pt-4 mb-4">MAIN LOREM IPSUM</h6>
|
<h6 class="px-3 pt-4">MAIN LOREM IPSUM</h6>
|
||||||
|
<hr class="mx-3 mb-2">
|
||||||
<ul class="px-3">
|
<ul class="px-3">
|
||||||
<li v-for="item in items" :key="item.mensaje">
|
<li v-for="item in items" :key="item.mensaje">
|
||||||
<a href="#"> {{ item.mensaje }} </a>
|
<a href="#"> {{ item.mensaje }} </a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h6 class="px-3 my-4">CONFIGURACIÓN</h6>
|
<h6 class="px-3 mt-5">CONFIGURACIÓN</h6>
|
||||||
|
<hr class="mx-3 mb-2">
|
||||||
<ul class="px-3">
|
<ul class="px-3">
|
||||||
<li v-for="item in configuracion" :key="item.mensaje">
|
<li v-for="item in configuracion" :key="item.mensaje">
|
||||||
<a href="#"> {{ item.mensaje }} </a>
|
<a href="#"> {{ item.mensaje }} </a>
|
||||||
@@ -89,11 +91,14 @@ export default {
|
|||||||
color: rgba(255, 255, 255, 0.7)!important;
|
color: rgba(255, 255, 255, 0.7)!important;
|
||||||
}
|
}
|
||||||
.profi-main-text-sty, .profi-main-text-sty a {
|
.profi-main-text-sty, .profi-main-text-sty a {
|
||||||
color: black!important;
|
color: #212529!important;
|
||||||
}
|
}
|
||||||
.profi-main-text-sty a:hover{
|
.profi-main-text-sty a:hover{
|
||||||
color:gray!important;
|
color:gray!important;
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
|
}
|
||||||
|
.b-sidebar-header-custom {
|
||||||
|
|
||||||
}
|
}
|
||||||
ul li {
|
ul li {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
@@ -101,7 +106,7 @@ ul li {
|
|||||||
}
|
}
|
||||||
ul li a {
|
ul li a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: black!important;
|
color: #212529!important;
|
||||||
}
|
}
|
||||||
ul li a:hover {
|
ul li a:hover {
|
||||||
color: rgba(0, 0, 0, 0.6)!important;
|
color: rgba(0, 0, 0, 0.6)!important;
|
||||||
|
|||||||
@@ -3,10 +3,6 @@ import VueRouter from 'vue-router'
|
|||||||
|
|
||||||
import Home from './view/Home.vue'
|
import Home from './view/Home.vue'
|
||||||
import PersonalData from './view/PersonalData.vue'
|
import PersonalData from './view/PersonalData.vue'
|
||||||
import Cart from './view/Cart.vue'
|
|
||||||
import Pago from './view/Pago.vue'
|
|
||||||
import Envio from './view/Envio.vue'
|
|
||||||
import Direccion from './view/Direccion'
|
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
@@ -23,26 +19,6 @@ const routes = [
|
|||||||
path: '/datosPersonales',
|
path: '/datosPersonales',
|
||||||
component: PersonalData,
|
component: PersonalData,
|
||||||
name: 'personalData'
|
name: 'personalData'
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/cart',
|
|
||||||
component: Cart,
|
|
||||||
name: 'cart'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/pago',
|
|
||||||
component: Pago,
|
|
||||||
name: 'pago'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/envio',
|
|
||||||
component: Envio,
|
|
||||||
name: 'envio'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/direcciones',
|
|
||||||
component: Direccion,
|
|
||||||
name: 'direcciones'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<Header></Header>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
|
|
||||||
<section class="col-10 col-sm-7 col-md-7 col-lg-7 col-xl-7 offset-1">
|
|
||||||
<ShoppingNav currentStep=2></ShoppingNav>
|
|
||||||
|
|
||||||
<Directions></Directions>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<aside id="CompraStatus" class="col-10 col-sm-2 col-md-2 col-lg-2 col-xl-2 offset-1 ">
|
|
||||||
<!-- <h3 class="text-center">status</h3> -->
|
|
||||||
<ShoppingStatus></ShoppingStatus>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Footer></Footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Header from '../components/Header'
|
|
||||||
import Footer from '../components/Footer'
|
|
||||||
import ShoppingNav from '../components/ShoppingNav'
|
|
||||||
import ShoppingStatus from '../components/ShoppingStatus'
|
|
||||||
import Directions from '../components/Directions'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
Header,
|
|
||||||
Footer,
|
|
||||||
ShoppingNav,
|
|
||||||
ShoppingStatus,
|
|
||||||
Directions
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#CompraStatus{
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width:760px ) {
|
|
||||||
#CompraStatus{
|
|
||||||
margin-top: 2rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<Header></Header>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
|
|
||||||
<section class="col-10 col-sm-7 col-md-7 col-lg-7 col-xl-7 offset-1">
|
|
||||||
<ShoppingNav currentStep=2></ShoppingNav>
|
|
||||||
|
|
||||||
<ShippingSection></ShippingSection>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<aside id="CompraStatus" class="col-10 col-sm-2 col-md-2 col-lg-2 col-xl-2 offset-1 ">
|
|
||||||
<!-- <h3 class="text-center">status</h3> -->
|
|
||||||
<ShoppingStatus></ShoppingStatus>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Footer></Footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Header from '../components/Header'
|
|
||||||
import Footer from '../components/Footer'
|
|
||||||
import ShoppingNav from '../components/ShoppingNav'
|
|
||||||
import ShoppingStatus from '../components/ShoppingStatus'
|
|
||||||
import ShippingSection from '../components/ShippingSection'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
Header,
|
|
||||||
Footer,
|
|
||||||
ShoppingNav,
|
|
||||||
ShoppingStatus,
|
|
||||||
ShippingSection
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#CompraStatus{
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width:760px ) {
|
|
||||||
#CompraStatus{
|
|
||||||
margin-top: 2rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>
|
|
||||||
<Header></Header>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
|
|
||||||
<section class="col-10 col-sm-7 col-md-7 col-lg-7 col-xl-7 offset-1">
|
|
||||||
<ShoppingNav currentStep=2></ShoppingNav>
|
|
||||||
|
|
||||||
<Payment></Payment>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<aside id="CompraStatus" class="col-10 col-sm-2 col-md-2 col-lg-2 col-xl-2 offset-1 ">
|
|
||||||
<!-- <h3 class="text-center">status</h3> -->
|
|
||||||
<ShoppingStatus></ShoppingStatus>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Footer></Footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Header from '../components/Header'
|
|
||||||
import Footer from '../components/Footer'
|
|
||||||
import ShoppingNav from '../components/ShoppingNav'
|
|
||||||
import ShoppingStatus from '../components/ShoppingStatus'
|
|
||||||
import Payment from '../components/Payment'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
Header,
|
|
||||||
Footer,
|
|
||||||
ShoppingNav,
|
|
||||||
ShoppingStatus,
|
|
||||||
Payment
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#CompraStatus{
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width:760px ) {
|
|
||||||
#CompraStatus{
|
|
||||||
margin-top: 2rem;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
Reference in New Issue
Block a user