diff --git a/components/ProductForm.vue b/components/ProductForm.vue index 2dbdefe..cc6efcd 100644 --- a/components/ProductForm.vue +++ b/components/ProductForm.vue @@ -184,8 +184,6 @@
- PRODUCT FORM: {{ productForm }}


- FORM: {{ form }} diff --git a/pages/editar/productos/[id].vue b/pages/editar/productos/[id].vue index 07d0b18..54d031e 100644 --- a/pages/editar/productos/[id].vue +++ b/pages/editar/productos/[id].vue @@ -70,6 +70,7 @@ export default { }) if (this.form.source !== 'MANUAL' && this.form.history) { try { + //TODO: Review Fetching the sync date from the history endpoint const result = await $fetch(`history/${this.form.history}/`, { baseURL: config.public.baseURL, method: 'GET', diff --git a/pages/editar/productos/importar.vue b/pages/editar/productos/importar.vue index 524ba20..018acb8 100644 --- a/pages/editar/productos/importar.vue +++ b/pages/editar/productos/importar.vue @@ -1,15 +1,408 @@ \ No newline at end of file +.header { + width: 100%; + outline: none; +} +.title { + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; +} +.arrow { + width: 20px; + height: 20px; +} + +.description { + margin-top: 30px; +} + +.close { + transform: rotate(-90deg); + opacity: 1; + transition: all 0.5s; +} +.open { + transition: all 0.5s; +} + +.import-products { + display: flex; + flex-direction: column; + align-items: flex-start; + justify-content: center; +} +.title { + color: $color-navy; + @include mobile { + margin-top: 70px; + } +} +.subtitle { + color: $color-navy; + font-size: $l; +} + +ol { + list-style-type: none; + counter-reset: a; +} +ol > li { + counter-increment: a; + position: relative; + list-style: none; + margin-top: 18px; + margin-left: 35px; +} +ol > li:before { + color: #fff; + background: $color-navy; + width: 18px; + height: 18px; + top: 2px; + left: -35px; + position: absolute; + line-height: 20px; + font-size: 12px; + content: counter(a); + text-align: center; + font-weight: 400; + -webkit-text-stroke: 0.04em; +} + +.error { + color: $color-error; +} + +label { + text-align: left; + color: $color-navy; + font-weight: $bold; + font-size: $xs; +} + +.cont-col { + margin: 15px 0; + display: flex; + flex-direction: column; + + @include mobile { + margin: 15px 80px; + } +} + +.input { + font-size: $s; +} + diff --git a/public/README.md b/public/README.md new file mode 100644 index 0000000..cf00435 --- /dev/null +++ b/public/README.md @@ -0,0 +1,11 @@ +# STATIC + +**This directory is not required, you can delete it if you don't want to use it.** + +This directory contains your static files. +Each file inside this directory is mapped to `/`. +Thus you'd want to delete this README.md before deploying to production. + +Example: `/static/robots.txt` is mapped as `/robots.txt`. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static). diff --git a/public/favicon.ico b/public/favicon.ico index 18993ad..9cfc119 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/plantilla-latienda.csv b/public/plantilla-latienda.csv new file mode 100644 index 0000000..85d603f --- /dev/null +++ b/public/plantilla-latienda.csv @@ -0,0 +1 @@ +sku,nombre-producto,descripcion,imagen,url,precio,gastos-envio,cond-envio,descuento,stock,tags,categoria,identificadores \ No newline at end of file