生成随机图片
function getMockImagesURL() {
    let arr = [200, 250, 300, 350, 400, 450];
    const width = arr[Math.ceil(Math.random() * 10) % 6];
    const height = arr[Math.ceil(Math.random() * 10) % 6];
    return 'https://picsum.photos/${width}/${height}';
}
    


