运维小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

image-viewer.wxs 228B

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