build: compile 1.11.0

This commit is contained in:
landluck 2023-09-18 10:22:56 +08:00
parent bc649cff58
commit be99bd3bd3
6 changed files with 6 additions and 6 deletions

View File

@ -140,7 +140,7 @@ VantComponent({
}, },
methods: { methods: {
reset() { reset() {
this.setData({ currentDate: this.getInitialDate() }); this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
this.scrollIntoView(); this.scrollIntoView();
}, },
initRect() { initRect() {

File diff suppressed because one or more lines are too long

View File

@ -103,7 +103,7 @@ VantComponent({
}); });
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
this.scroll(); this.scroll();
}, this.duration); }, this.duration + this.data.delay);
}, },
onClickIcon(event) { onClickIcon(event) {
if (this.data.mode === 'closeable') { if (this.data.mode === 'closeable') {

View File

@ -156,7 +156,7 @@ var getTime = function (date) {
}, },
methods: { methods: {
reset: function () { reset: function () {
this.setData({ currentDate: this.getInitialDate() }); this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
this.scrollIntoView(); this.scrollIntoView();
}, },
initRect: function () { initRect: function () {

File diff suppressed because one or more lines are too long

View File

@ -108,7 +108,7 @@ var utils_1 = require("../common/utils");
}); });
this.timer = setTimeout(function () { this.timer = setTimeout(function () {
_this.scroll(); _this.scroll();
}, this.duration); }, this.duration + this.data.delay);
}, },
onClickIcon: function (event) { onClickIcon: function (event) {
if (this.data.mode === 'closeable') { if (this.data.mode === 'closeable') {