|
@@ -53,7 +53,7 @@
|
53
|
53
|
|
54
|
54
|
<script type="text/javascript" src="js/saveLocal.js"></script>
|
55
|
55
|
|
56
|
|
-
|
|
56
|
+ <script> console.log(window.localStorage.getItem("MADERA")); </script>
|
57
|
57
|
|
58
|
58
|
|
59
|
59
|
<ons-navigator swipeable animation="slide" id="myNavigator">
|
|
@@ -121,7 +121,7 @@
|
121
|
121
|
//var File = this.data.title.toUpperCase() + '.json' ;
|
122
|
122
|
var Esp = this.data.esp.split(', ');
|
123
|
123
|
var artesanos_json = this.data.json;
|
124
|
|
- console.log(artesanos_json);
|
|
124
|
+
|
125
|
125
|
|
126
|
126
|
//Convertir en mayuscula primera letra del string.
|
127
|
127
|
for(var i=0; i<Esp.length; i++) {
|
|
@@ -198,7 +198,7 @@
|
198
|
198
|
<ons-list-item expandable tappable>
|
199
|
199
|
<div class="center" >${Artesano.Nombre}</div>
|
200
|
200
|
<div class="expandable-content"> Municipio: ${Artesano.Municipio}<br>
|
201
|
|
- Tel\u00e9fono: ${Artesano["Tel\u00e9fono 1"]}<br>
|
|
201
|
+ Tel\u00e9fono: ${Artesano["Telefono 1"]}<br>
|
202
|
202
|
Correo Electr\u00f3nico: ${Artesano["E-mail"]}<br>
|
203
|
203
|
</div>
|
204
|
204
|
</ons-list-item>`
|
|
@@ -217,20 +217,20 @@
|
217
|
217
|
if (Artesano.Municipio.trim().length != 0) {
|
218
|
218
|
cont ++;
|
219
|
219
|
}
|
220
|
|
- if (Artesano["Tel\u00e9fono 1"].trim().length != 0) {
|
|
220
|
+ if (Artesano["Telefono 1"].trim().length != 0) {
|
221
|
221
|
cont ++;
|
222
|
222
|
}
|
223
|
223
|
if (Artesano["E-mail"].trim().length != 0) {
|
224
|
224
|
cont ++;
|
225
|
225
|
}
|
226
|
|
- if (Artesano.Especificaciones.trim().length != 0) {
|
|
226
|
+ if (Artesano.Especificacion.trim().length != 0) {
|
227
|
227
|
cont ++;
|
228
|
228
|
}
|
229
|
229
|
|
230
|
230
|
|
231
|
231
|
//info a pasar
|
232
|
232
|
//'title':'${Artesano.Nombre}','esp': '${info}'
|
233
|
|
- var item = ons.createElement(`<ons-list-item onclick="myNavigator.pushPage('artesano.html', { data: { title: '${Artesano.Nombre}', mun: '${Artesano.Municipio}', tel: '${Artesano["Tel\u00e9fono 1"]}', email: '${Artesano["E-mail"]}', esp: '${Artesano.Especificaciones}' } })" tappable>
|
|
233
|
+ var item = ons.createElement(`<ons-list-item onclick="myNavigator.pushPage('artesano.html', { data: { title: '${Artesano.Nombre}', mun: '${Artesano.Municipio}', tel: '${Artesano["Telefono 1"]}', email: '${Artesano["E-mail"]}', esp: '${Artesano.Especificacion}' } })" tappable>
|
234
|
234
|
<div class="title">${Artesano.Nombre}</div>
|
235
|
235
|
</ons-list-item>`);
|
236
|
236
|
|
|
@@ -324,7 +324,7 @@
|
324
|
324
|
var searchVal = "my Name";
|
325
|
325
|
for (var i=0 ; i < artesanos_json.length ; i++)
|
326
|
326
|
{
|
327
|
|
- if (artesanos_json[i].Especificaciones.includes(Esp[num])) {
|
|
327
|
+ if (artesanos_json[i].Especificacion.includes(Esp[num])) {
|
328
|
328
|
results.push(artesanos_json[i]);
|
329
|
329
|
}
|
330
|
330
|
}
|
|
@@ -337,7 +337,7 @@
|
337
|
337
|
|
338
|
338
|
//if(Esp[num] in artesanos_json.) {}
|
339
|
339
|
Artesanos+=`${results[i].Nombre}|`
|
340
|
|
- ArtesanosInfo+=`${results[i].Municipio}|${results[i]["Tel\u00e9fono 1"]}|${results[i]["E-mail"]}|${results[i].Especificaciones}&&`
|
|
340
|
+ ArtesanosInfo+=`${results[i].Municipio}|${results[i]["Telefono 1"]}|${results[i]["E-mail"]}|${results[i].Especificacion}&&`
|
341
|
341
|
//`<a id='home.html'>${Artesania.artesano} | ${Artesania.municipio}</a> `
|
342
|
342
|
}
|
343
|
343
|
|