index.js 395 B

1234567891011121314151617181920212223242526
  1. var app = getApp();
  2. Component({
  3. properties: {
  4. imgUrls:{
  5. type:Object,
  6. value:[]
  7. }
  8. },
  9. data: {
  10. indicatorDots: false,
  11. circular: true,
  12. autoplay: false,
  13. interval: 3000,
  14. duration: 500,
  15. currents: "1"
  16. },
  17. attached:function(){
  18. },
  19. methods: {
  20. change: function (e) {
  21. this.setData({
  22. currents: e.detail.current + 1
  23. })
  24. }
  25. }
  26. })