Files
sundynix-radio-mp/node_modules/tdesign-miniprogram/miniprogram_dist/image-viewer/image-viewer.wxs
T
2026-03-05 09:08:21 +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,
};