fixed add to card bug for yasamin theme part

master
A1Gard 2 days ago
parent dcb556edcf
commit 4a75c66267

@ -102,9 +102,9 @@ export default {
select(i) { select(i) {
document.querySelector('#price').innerText = commafy(this.qz[i].price.toString()) + ' ' + this.currency; document.querySelector('#price').innerText = commafy(this.qz[i].price.toString()) + ' ' + this.currency;
let index = this.qz[i].image; let index = this.qz[i].image;
this.selected = i;
document.querySelector('#preview a').setAttribute('href', document.querySelector(`#hidden-images a:nth-child(${index + 1})`).getAttribute('href')); document.querySelector('#preview a').setAttribute('href', document.querySelector(`#hidden-images a:nth-child(${index + 1})`).getAttribute('href'));
document.querySelector('#preview img').setAttribute('src', document.querySelector(`#hidden-images a:nth-child(${index + 1}) img`).getAttribute('src')); document.querySelector('#preview img').setAttribute('src', document.querySelector(`#hidden-images a:nth-child(${index + 1}) img`).getAttribute('src'));
this.selected = i;
}, },
async add2card() { async add2card() {
if (this.selected == null) { if (this.selected == null) {

Loading…
Cancel
Save