Files

20 lines
332 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
Component({
data: {
first: 1,
second: 1,
third: 1,
},
methods: {
onFirstChange(e) {
this.setData({ first: e.detail.current });
},
onSecondChange(e) {
this.setData({ second: e.detail.current });
},
onThirdChange(e) {
this.setData({ third: e.detail.current });
},
},
});