vr-shopxo-source/sourcecode/baidu/default/components/slider/slider.js

17 lines
309 B
JavaScript
Raw Normal View History

2019-07-16 13:12:26 +00:00
const app = getApp();
Component({
data: {
indicator_dots: false,
indicator_color: 'rgba(0, 0, 0, .3)',
indicator_active_color: '#e31c55',
autoplay: true,
2019-07-17 11:50:33 +00:00
circular: true,
banner: [],
2019-07-16 13:12:26 +00:00
},
2019-07-17 11:50:33 +00:00
properties: {},
2019-07-16 13:12:26 +00:00
methods: {
banner_event(e) {
app.operation_event(e);
}
}
});