mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(input): support input nickname event (#5758)
This commit is contained in:
parent
348c3103b7
commit
979fc92bdc
@ -76,6 +76,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -187,6 +188,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -298,6 +300,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -409,6 +412,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
|
@ -183,6 +183,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -300,6 +301,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -544,6 +546,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -661,6 +664,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
|
@ -254,7 +254,7 @@ Page({
|
||||
| label | 输入框左侧文本 | _string_ | - |
|
||||
| size | 单元格大小,可选值为 `large` | _string_ | - |
|
||||
| value | 当前输入的值 | _string \| number_ | - |
|
||||
| type | 可设置为任意原生类型, 如 `number` `idcard` `textarea` `digit` | _string_ | `text` |
|
||||
| type | 可设置为任意原生类型, 如 `number` `idcard` `textarea` `digit` `nickname` | _string_ | `text` |
|
||||
| fixed | 如果 type 为 `textarea` 且在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true | _boolean_ | `false` |
|
||||
| focus | 获取焦点 | _boolean_ | `false` |
|
||||
| border | 是否显示内边框 | _boolean_ | `true` |
|
||||
@ -309,6 +309,7 @@ Page({
|
||||
| bind:click-input | 点击输入区域时触发 | - |
|
||||
| bind:linechange | 输入框行数变化时调用,只对 textarea 有效 | event.detail = { height: 0, heightRpx: 0, lineCount: 0 } |
|
||||
| bind:keyboardheightchange | 键盘高度发生变化的时候触发此事件 | event.detail = { height: height, duration: duration } |
|
||||
| bind:nicknamereview `v1.11.5` | 用户昵称审核完毕后触发,仅在 type 为 "nickname" 时有效 | event.detail = { pass, timeout } |
|
||||
|
||||
### InputDetail
|
||||
|
||||
|
@ -164,6 +164,10 @@ VantComponent({
|
||||
this.$emit('keyboardheightchange', event.detail);
|
||||
},
|
||||
|
||||
onBindNicknameReview(event) {
|
||||
this.$emit('nicknamereview', event.detail);
|
||||
},
|
||||
|
||||
emitChange(detail: InputDetails) {
|
||||
const { extraEventParams } = this.data;
|
||||
|
||||
|
@ -27,4 +27,5 @@
|
||||
bindfocus="onFocus"
|
||||
bindconfirm="onConfirm"
|
||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||
bindnicknamereview="onBindNicknameReview"
|
||||
/>
|
||||
|
@ -67,6 +67,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -163,6 +164,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -250,6 +252,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -353,6 +356,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -446,6 +450,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -522,6 +527,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -623,6 +629,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -814,6 +821,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
|
@ -92,6 +92,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -203,6 +204,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -322,6 +324,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -429,6 +432,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -536,6 +540,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
@ -650,6 +655,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:focus="onFocus"
|
||||
bind:input="onInput"
|
||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||
bind:nicknamereview="onBindNicknameReview"
|
||||
bind:tap="onClickInput"
|
||||
/>
|
||||
<wx-view
|
||||
|
Loading…
x
Reference in New Issue
Block a user