更换image表格图片地址

pull/107/MERGE
RuoYi 2019-06-25 10:56:33 +08:00
parent 4ca9cb9bab
commit a2a75a7fce
1 changed files with 2 additions and 2 deletions

View File

@ -44,9 +44,9 @@
// 'img/profile.jpg' - 'http://ruoyi.vip/' 变成 http://ruoyi.vip/img/profile.jpg // 'img/profile.jpg' - 'http://ruoyi.vip/' 变成 http://ruoyi.vip/img/profile.jpg
// 'ruoyi.png' - 'http://ruoyi.vip/' 变成 http://ruoyi.vip/ruoyi.jpg // 'ruoyi.png' - 'http://ruoyi.vip/' 变成 http://ruoyi.vip/ruoyi.jpg
if(index % 2 == 0){ if(index % 2 == 0){
return $.table.imageView('img/profile.jpg', 'http://ruoyi.vip/'); return $.table.imageView('img/profile.jpg', 'http://demo.ruoyi.vip/');
}else { }else {
return $.table.imageView('ruoyi.png', 'http://ruoyi.vip/'); return $.table.imageView('ruoyi.png', 'http://demo.ruoyi.vip/');
} }
} }
}, },