mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.11.5
This commit is contained in:
parent
68be39fea2
commit
2680fedace
3
dist/field/index.js
vendored
3
dist/field/index.js
vendored
@ -95,6 +95,9 @@ VantComponent({
|
|||||||
onKeyboardHeightChange(event) {
|
onKeyboardHeightChange(event) {
|
||||||
this.$emit('keyboardheightchange', event.detail);
|
this.$emit('keyboardheightchange', event.detail);
|
||||||
},
|
},
|
||||||
|
onBindNicknameReview(event) {
|
||||||
|
this.$emit('nicknamereview', event.detail);
|
||||||
|
},
|
||||||
emitChange(detail) {
|
emitChange(detail) {
|
||||||
const { extraEventParams } = this.data;
|
const { extraEventParams } = this.data;
|
||||||
this.setData({ value: detail.value });
|
this.setData({ value: detail.value });
|
||||||
|
1
dist/field/input.wxml
vendored
1
dist/field/input.wxml
vendored
@ -27,4 +27,5 @@
|
|||||||
bindfocus="onFocus"
|
bindfocus="onFocus"
|
||||||
bindconfirm="onConfirm"
|
bindconfirm="onConfirm"
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bindnicknamereview="onBindNicknameReview"
|
||||||
/>
|
/>
|
||||||
|
1
dist/mixins/transition.js
vendored
1
dist/mixins/transition.js
vendored
@ -21,7 +21,6 @@ export function transition(showDefaultValue) {
|
|||||||
duration: {
|
duration: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
observer: 'observeDuration',
|
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
|
7
dist/stepper/index.js
vendored
7
dist/stepper/index.js
vendored
@ -128,12 +128,7 @@ VantComponent({
|
|||||||
if (value === '') {
|
if (value === '') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let formatted = this.filter(value);
|
let formatted = this.format(value);
|
||||||
// limit max decimal length
|
|
||||||
if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
|
||||||
const pair = formatted.split('.');
|
|
||||||
formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
|
|
||||||
}
|
|
||||||
this.emitChange(formatted);
|
this.emitChange(formatted);
|
||||||
},
|
},
|
||||||
emitChange(value) {
|
emitChange(value) {
|
||||||
|
@ -109,6 +109,9 @@ var props_1 = require("./props");
|
|||||||
onKeyboardHeightChange: function (event) {
|
onKeyboardHeightChange: function (event) {
|
||||||
this.$emit('keyboardheightchange', event.detail);
|
this.$emit('keyboardheightchange', event.detail);
|
||||||
},
|
},
|
||||||
|
onBindNicknameReview: function (event) {
|
||||||
|
this.$emit('nicknamereview', event.detail);
|
||||||
|
},
|
||||||
emitChange: function (detail) {
|
emitChange: function (detail) {
|
||||||
var extraEventParams = this.data.extraEventParams;
|
var extraEventParams = this.data.extraEventParams;
|
||||||
this.setData({ value: detail.value });
|
this.setData({ value: detail.value });
|
||||||
|
@ -27,4 +27,5 @@
|
|||||||
bindfocus="onFocus"
|
bindfocus="onFocus"
|
||||||
bindconfirm="onConfirm"
|
bindconfirm="onConfirm"
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bindnicknamereview="onBindNicknameReview"
|
||||||
/>
|
/>
|
||||||
|
@ -24,7 +24,6 @@ function transition(showDefaultValue) {
|
|||||||
duration: {
|
duration: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
observer: 'observeDuration',
|
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
|
@ -141,12 +141,7 @@ function equal(value1, value2) {
|
|||||||
if (value === '') {
|
if (value === '') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var formatted = this.filter(value);
|
var formatted = this.format(value);
|
||||||
// limit max decimal length
|
|
||||||
if ((0, validator_1.isDef)(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
|
||||||
var pair = formatted.split('.');
|
|
||||||
formatted = "".concat(pair[0], ".").concat(pair[1].slice(0, this.data.decimalLength));
|
|
||||||
}
|
|
||||||
this.emitChange(formatted);
|
this.emitChange(formatted);
|
||||||
},
|
},
|
||||||
emitChange: function (value) {
|
emitChange: function (value) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user