mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
35 lines
605 B
JavaScript
35 lines
605 B
JavaScript
import Page from '../../common/page';
|
|
import Toast from '../../dist/toast/toast';
|
|
|
|
Page({
|
|
data: {
|
|
time: 30 * 60 * 60 * 1000,
|
|
timeData: {}
|
|
},
|
|
|
|
onChange(e) {
|
|
this.setData({
|
|
timeData: e.detail
|
|
});
|
|
},
|
|
|
|
start() {
|
|
const countDown = this.selectComponent('.control-count-down');
|
|
countDown.start();
|
|
},
|
|
|
|
pause() {
|
|
const countDown = this.selectComponent('.control-count-down');
|
|
countDown.pause();
|
|
},
|
|
|
|
reset() {
|
|
const countDown = this.selectComponent('.control-count-down');
|
|
countDown.reset();
|
|
},
|
|
|
|
finished() {
|
|
Toast('倒计时结束');
|
|
}
|
|
});
|