volunteer.js 623 B

12345678910111213141516171819202122232425
  1. const app = getApp();
  2. var initData=[
  3. {
  4. "id":1,
  5. "volunteerImg":app.appAssetsUrl+"/images/lx1.png",
  6. "volunteer":"巴厘岛国际志愿者",
  7. "volunteerActivity":"热情岛国里的中文导师",
  8. },
  9. {
  10. "id": 2,
  11. "volunteerImg": app.appAssetsUrl+"/images/lx2.png",
  12. "volunteer": "斯里兰卡海龟保护",
  13. "volunteerActivity": "热情岛国里的中文导师",
  14. },
  15. {
  16. "id": 3,
  17. "volunteerImg": app.appAssetsUrl+"/images/lx3.png",
  18. "volunteer": "斯里兰卡海龟保护",
  19. "volunteerActivity": "热情岛国里的英文导师",
  20. }
  21. ]
  22. module.exports={
  23. initData:initData
  24. }