From 511adf7f5d1b209674a9f4437eee1b98c74a9c04 Mon Sep 17 00:00:00 2001 From: landluck Date: Fri, 25 Aug 2023 10:37:36 +0800 Subject: [PATCH] build: compile 1.10.24 --- dist/button/index.wxml | 1 + dist/calendar/index.js | 8 ++++++++ dist/mixins/button.js | 3 +++ lib/button/index.wxml | 1 + lib/calendar/index.js | 8 ++++++++ lib/mixins/button.js | 3 +++ 6 files changed, 24 insertions(+) diff --git a/dist/button/index.wxml b/dist/button/index.wxml index b87b9b8f..bfe8bce8 100644 --- a/dist/button/index.wxml +++ b/dist/button/index.wxml @@ -23,6 +23,7 @@ bindcontact="onContact" bindgetphonenumber="onGetPhoneNumber" bindgetrealtimephonenumber="onGetRealTimePhoneNumber" + bindagreeprivacyauthorization="onAgreePrivacyAuthorization" binderror="onError" bindlaunchapp="onLaunchApp" bindopensetting="onOpenSetting" diff --git a/dist/calendar/index.js b/dist/calendar/index.js index 18fb0ce9..8fe09b97 100644 --- a/dist/calendar/index.js +++ b/dist/calendar/index.js @@ -119,6 +119,14 @@ VantComponent({ currentDate: null, scrollIntoView: '', }, + watch: { + minDate() { + this.initRect(); + }, + maxDate() { + this.initRect(); + }, + }, created() { this.setData({ currentDate: this.getInitialDate(this.data.defaultDate), diff --git a/dist/mixins/button.js b/dist/mixins/button.js index 225c32e4..02c6276e 100644 --- a/dist/mixins/button.js +++ b/dist/mixins/button.js @@ -40,6 +40,9 @@ export const button = Behavior({ onOpenSetting(event) { this.triggerEvent('opensetting', event.detail); }, + onAgreePrivacyAuthorization(event) { + this.triggerEvent('agreeprivacyauthorization', event.detail); + }, onChooseAvatar(event) { this.triggerEvent('chooseavatar', event.detail); }, diff --git a/lib/button/index.wxml b/lib/button/index.wxml index b87b9b8f..bfe8bce8 100644 --- a/lib/button/index.wxml +++ b/lib/button/index.wxml @@ -23,6 +23,7 @@ bindcontact="onContact" bindgetphonenumber="onGetPhoneNumber" bindgetrealtimephonenumber="onGetRealTimePhoneNumber" + bindagreeprivacyauthorization="onAgreePrivacyAuthorization" binderror="onError" bindlaunchapp="onLaunchApp" bindopensetting="onOpenSetting" diff --git a/lib/calendar/index.js b/lib/calendar/index.js index d4fbd91a..3e7f656f 100644 --- a/lib/calendar/index.js +++ b/lib/calendar/index.js @@ -135,6 +135,14 @@ var getTime = function (date) { currentDate: null, scrollIntoView: '', }, + watch: { + minDate: function () { + this.initRect(); + }, + maxDate: function () { + this.initRect(); + }, + }, created: function () { this.setData({ currentDate: this.getInitialDate(this.data.defaultDate), diff --git a/lib/mixins/button.js b/lib/mixins/button.js index 0667f813..77b2c376 100644 --- a/lib/mixins/button.js +++ b/lib/mixins/button.js @@ -43,6 +43,9 @@ exports.button = Behavior({ onOpenSetting: function (event) { this.triggerEvent('opensetting', event.detail); }, + onAgreePrivacyAuthorization: function (event) { + this.triggerEvent('agreeprivacyauthorization', event.detail); + }, onChooseAvatar: function (event) { this.triggerEvent('chooseavatar', event.detail); },