Skip to content

Commit

Permalink
build: compile 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
landluck committed Sep 18, 2023
1 parent bc649cf commit be99bd3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/calendar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ VantComponent({
},
methods: {
reset() {
this.setData({ currentDate: this.getInitialDate() });
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
this.scrollIntoView();
},
initRect() {
Expand Down
2 changes: 1 addition & 1 deletion dist/icon/index.wxss

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/notice-bar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ VantComponent({
});
this.timer = setTimeout(() => {
this.scroll();
}, this.duration);
}, this.duration + this.data.delay);
},
onClickIcon(event) {
if (this.data.mode === 'closeable') {
Expand Down
2 changes: 1 addition & 1 deletion lib/calendar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion lib/icon/index.wxss

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/notice-bar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down

0 comments on commit be99bd3

Please sign in to comment.