mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.10.24
This commit is contained in:
parent
d692b708af
commit
511adf7f5d
1
dist/button/index.wxml
vendored
1
dist/button/index.wxml
vendored
@ -23,6 +23,7 @@
|
|||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindgetrealtimephonenumber="onGetRealTimePhoneNumber"
|
bindgetrealtimephonenumber="onGetRealTimePhoneNumber"
|
||||||
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
binderror="onError"
|
binderror="onError"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
|
8
dist/calendar/index.js
vendored
8
dist/calendar/index.js
vendored
@ -119,6 +119,14 @@ VantComponent({
|
|||||||
currentDate: null,
|
currentDate: null,
|
||||||
scrollIntoView: '',
|
scrollIntoView: '',
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
minDate() {
|
||||||
|
this.initRect();
|
||||||
|
},
|
||||||
|
maxDate() {
|
||||||
|
this.initRect();
|
||||||
|
},
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.setData({
|
||||||
currentDate: this.getInitialDate(this.data.defaultDate),
|
currentDate: this.getInitialDate(this.data.defaultDate),
|
||||||
|
3
dist/mixins/button.js
vendored
3
dist/mixins/button.js
vendored
@ -40,6 +40,9 @@ export const button = Behavior({
|
|||||||
onOpenSetting(event) {
|
onOpenSetting(event) {
|
||||||
this.triggerEvent('opensetting', event.detail);
|
this.triggerEvent('opensetting', event.detail);
|
||||||
},
|
},
|
||||||
|
onAgreePrivacyAuthorization(event) {
|
||||||
|
this.triggerEvent('agreeprivacyauthorization', event.detail);
|
||||||
|
},
|
||||||
onChooseAvatar(event) {
|
onChooseAvatar(event) {
|
||||||
this.triggerEvent('chooseavatar', event.detail);
|
this.triggerEvent('chooseavatar', event.detail);
|
||||||
},
|
},
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindgetrealtimephonenumber="onGetRealTimePhoneNumber"
|
bindgetrealtimephonenumber="onGetRealTimePhoneNumber"
|
||||||
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
binderror="onError"
|
binderror="onError"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
|
@ -135,6 +135,14 @@ var getTime = function (date) {
|
|||||||
currentDate: null,
|
currentDate: null,
|
||||||
scrollIntoView: '',
|
scrollIntoView: '',
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
minDate: function () {
|
||||||
|
this.initRect();
|
||||||
|
},
|
||||||
|
maxDate: function () {
|
||||||
|
this.initRect();
|
||||||
|
},
|
||||||
|
},
|
||||||
created: function () {
|
created: function () {
|
||||||
this.setData({
|
this.setData({
|
||||||
currentDate: this.getInitialDate(this.data.defaultDate),
|
currentDate: this.getInitialDate(this.data.defaultDate),
|
||||||
|
@ -43,6 +43,9 @@ exports.button = Behavior({
|
|||||||
onOpenSetting: function (event) {
|
onOpenSetting: function (event) {
|
||||||
this.triggerEvent('opensetting', event.detail);
|
this.triggerEvent('opensetting', event.detail);
|
||||||
},
|
},
|
||||||
|
onAgreePrivacyAuthorization: function (event) {
|
||||||
|
this.triggerEvent('agreeprivacyauthorization', event.detail);
|
||||||
|
},
|
||||||
onChooseAvatar: function (event) {
|
onChooseAvatar: function (event) {
|
||||||
this.triggerEvent('chooseavatar', event.detail);
|
this.triggerEvent('chooseavatar', event.detail);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user