Files
test/miniprogram_npm/tdesign-miniprogram/image-viewer/image-viewer.wxs
lingxiao865 6c6fe3d0d6 first commit
2025-09-18 12:39:54 +08:00

8 lines
228 B
XML

function shouldLoadImage(index, currentIndex, loadedIndexes) {
return Math.abs(index - currentIndex) <= 1 || (loadedIndexes && loadedIndexes.indexOf(index) !== -1);
}
module.exports = {
shouldLoadImage: shouldLoadImage,
};