Merge pull request 'Arreglar enlaces del menú' (#66) from fix_menu_links_#65 into main
Reviewed-on: OneTeam/don_confiao#66
This commit is contained in:
		@@ -29,7 +29,6 @@
 | 
				
			|||||||
         menuItems: [
 | 
					         menuItems: [
 | 
				
			||||||
             { title: 'Inicio', route: '/'},
 | 
					             { title: 'Inicio', route: '/'},
 | 
				
			||||||
             { title: 'Comprar', route:'/comprar'},
 | 
					             { title: 'Comprar', route:'/comprar'},
 | 
				
			||||||
             { title: 'Resumen de Compra', route:'/resumen_compra'},
 | 
					 | 
				
			||||||
         ],
 | 
					         ],
 | 
				
			||||||
     }),
 | 
					     }),
 | 
				
			||||||
     watch: {
 | 
					     watch: {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <strong class="text-red-darken-4">
 | 
				
			||||||
 | 
					    <slot></slot>
 | 
				
			||||||
 | 
					  </strong>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
@@ -56,7 +56,7 @@
 | 
				
			|||||||
      return {
 | 
					      return {
 | 
				
			||||||
        purchase: {},
 | 
					        purchase: {},
 | 
				
			||||||
        headers: [
 | 
					        headers: [
 | 
				
			||||||
          { title: 'Nombre', value: 'product.name' },
 | 
					          { title: 'Producto', value: 'product.name' },
 | 
				
			||||||
          { title: 'Precio', value: 'unit_price' },
 | 
					          { title: 'Precio', value: 'unit_price' },
 | 
				
			||||||
          { title: 'Cantidad', value: 'quantity' },
 | 
					          { title: 'Cantidad', value: 'quantity' },
 | 
				
			||||||
          { title: 'Subtotal', value: 'subtotal' },
 | 
					          { title: 'Subtotal', value: 'subtotal' },
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -0,0 +1,34 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <v-container >
 | 
				
			||||||
 | 
					    <v-responsive>
 | 
				
			||||||
 | 
					      <v-toolbar>
 | 
				
			||||||
 | 
					        <v-toolbar-title>Don Confiao te atiende</v-toolbar-title>
 | 
				
			||||||
 | 
					      </v-toolbar>
 | 
				
			||||||
 | 
					      <v-card>
 | 
				
			||||||
 | 
					        <v-card-title>Hacer parte de la tienda la ilusión</v-card-title>
 | 
				
			||||||
 | 
					        <v-card-text>
 | 
				
			||||||
 | 
					          Recuerda que participando de esta tienda le apuestas a la economía solidaria, al mercado justo, a la alimentación sana, al campesinado colombiano y a un mundo mejor.
 | 
				
			||||||
 | 
					        </v-card-text>
 | 
				
			||||||
 | 
					      </v-card>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <v-card>
 | 
				
			||||||
 | 
					        <v-card-title>En desarrollo</v-card-title>
 | 
				
			||||||
 | 
					        <v-card-text>
 | 
				
			||||||
 | 
					          Don confiao apenas esta entendiendo como funciona esta tienda y por ahora <ResaltedText>solo puede atender las compras de contado</ResaltedText>, ya sea en efectivo o consignación.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          <v-alert type="warning">
 | 
				
			||||||
 | 
					            Si no vas a pagar tu compra recuerda que debes hacerlo en la planilla manual</v-alert>
 | 
				
			||||||
 | 
					        </v-card-text>
 | 
				
			||||||
 | 
					      </v-card>
 | 
				
			||||||
 | 
					      <v-card>
 | 
				
			||||||
 | 
					        <v-card-title>A comprar</v-card-title>
 | 
				
			||||||
 | 
					        <v-card-text>
 | 
				
			||||||
 | 
					          El siguiente botón te permitirá registrar tu compra. Cuando finalices te pedimos que ingrese el número de la compra, la fecha y el valor en la planilla física.
 | 
				
			||||||
 | 
					          <div class="text-center">
 | 
				
			||||||
 | 
					            <v-btn :to="{ path: 'comprar' }" color="green">Ir a Comprar</v-btn>
 | 
				
			||||||
 | 
					          </div>
 | 
				
			||||||
 | 
					        </v-card-text>
 | 
				
			||||||
 | 
					      </v-card>
 | 
				
			||||||
 | 
					    </v-responsive>
 | 
				
			||||||
 | 
					  </v-container>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					  <Purchase />
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script setup>
 | 
				
			||||||
 | 
					//
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
@@ -1,7 +1,6 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
  <Purchase />
 | 
					  <Wellcome />
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<script setup>
 | 
					<script setup>
 | 
				
			||||||
//
 | 
					 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user