document.addEventListener('DOMContentLoaded',()=>{const thumbnails=document.querySelector('.thumbnails');const mainImage=document.querySelector('.main-image img');const loadLotImages=async()=>{try{const lotId="882";const response=await fetch(`/catalog/get_images/${lotId}/`,{method:'GET',headers:{'X-Requested-With':'XMLHttpRequest','Content-Type':'application/json'}});if(!response.ok){throw new Error('Ошибка загрузки изображений');}
const data=await response.json();if(!data.success){throw new Error(data.error||'Неизвестная ошибка');}
thumbnails.innerHTML='';data.images.forEach((img,index)=>{const thumbImg=document.createElement('img');thumbImg.src=img.thumbnail;thumbImg.alt=`1 рубль 1861, СПБ-ФБ ${index + 1}`;thumbImg.style.objectFit='scale-down';thumbImg.addEventListener('mouseover',()=>{mainImage.src=img.full_image;});thumbImg.addEventListener('click',()=>{mainImage.src=img.full_image;});thumbnails.appendChild(thumbImg);});if(data.images.length>0){mainImage.src=data.images[0].full_image;}}catch(error){console.error('Ошибка:',error);thumbnails.innerHTML=`<p>Не удалось загрузить изображения: ${error.message}</p>`;}};loadLotImages();});;