newpanjing/simpleui

change页面有多个图的时候只会间隔显示图片的问题

piaoyezju opened this issue · 0 comments

修改templates/admin/includes/fieldset.html
188行,
for (var i = 0; i < image_document.length; i++) {
改成这样
for (var i = image_document.length -1 ; i >= 0; i--) {