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: {
reset() {
this.setData({ currentDate: this.getInitialDate() });
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
this.scrollIntoView();
},
initRect() {

File diff suppressed because one or more lines are too long

View File

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

View File

@ -156,7 +156,7 @@ var getTime = function (date) {
},
methods: {
reset: function () {
this.setData({ currentDate: this.getInitialDate() });
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
this.scrollIntoView();
},
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.scroll();
}, this.duration);
}, this.duration + this.data.delay);
},
onClickIcon: function (event) {
if (this.data.mode === 'closeable') {