mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 04:52:50 +00:00
26 lines
395 B
JavaScript
26 lines
395 B
JavaScript
var app = getApp();
|
|
Component({
|
|
properties: {
|
|
imgUrls:{
|
|
type:Object,
|
|
value:[]
|
|
}
|
|
},
|
|
data: {
|
|
indicatorDots: false,
|
|
circular: true,
|
|
autoplay: false,
|
|
interval: 3000,
|
|
duration: 500,
|
|
currents: "1"
|
|
},
|
|
attached:function(){
|
|
},
|
|
methods: {
|
|
change: function (e) {
|
|
this.setData({
|
|
currents: e.detail.current + 1
|
|
})
|
|
}
|
|
}
|
|
}) |