17 lines
309 B
JavaScript
Executable File
17 lines
309 B
JavaScript
Executable File
const app = getApp();
|
|
Component({
|
|
data: {
|
|
indicator_dots: false,
|
|
indicator_color: 'rgba(0, 0, 0, .3)',
|
|
indicator_active_color: '#e31c55',
|
|
autoplay: true,
|
|
circular: true,
|
|
banner: [],
|
|
},
|
|
properties: {},
|
|
methods: {
|
|
banner_event(e) {
|
|
app.operation_event(e);
|
|
}
|
|
}
|
|
}); |