docs(NumberKeyboard): add random key order demo (#7844)

This commit is contained in:
neverland 2021-01-02 12:59:55 +08:00 committed by GitHub
parent 5137fcf76f
commit fd385bce9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 39 additions and 59 deletions

View File

@ -111,43 +111,23 @@ Use `title` prop to set keyboard title.
/> />
``` ```
### Number Random ### Random Key Order
Use `random-key-order` prop to random sort number keypads. Use `random-key-order` prop to shuffle the order of keys.
```html ```html
<van-cell @touchstart.native.stop="show = true" <van-cell @touchstart.native.stop="show = true">
>弹出配置随机数字的键盘</van-cell Show Keyboard With Random Key Order
> </van-cell>
<van-number-keyboard <van-number-keyboard
:show="show" :show="show"
:random-key-order="true" random-key-order
@blur="show = false" @blur="show = false"
@input="onInput" @input="onInput"
@delete="onDelete" @delete="onDelete"
/> />
``` ```
```js
import { Toast } from 'vant';
export default {
data() {
return {
show: true,
};
},
methods: {
onInput(value) {
Toast(value);
},
onDelete() {
Toast('删除');
},
},
};
```
### Bind Value ### Bind Value
```html ```html
@ -197,7 +177,7 @@ export default {
| hide-on-click-outside | Whether to hide keyboard when outside is clicked | _boolean_ | `true` | | hide-on-click-outside | Whether to hide keyboard when outside is clicked | _boolean_ | `true` |
| get-container `v2.10.0` | Return the mount node for NumberKeyboard | _string \| () => Element_ | - | | get-container `v2.10.0` | Return the mount node for NumberKeyboard | _string \| () => Element_ | - |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` |
| random-key-order | whether to enable random sort number keypads | _boolean_ | `false` | | random-key-order `v2.12.2` | Whether to shuffle the order of keys | _boolean_ | `false` |
### Events ### Events

View File

@ -124,41 +124,21 @@ export default {
### 随机数字键盘 ### 随机数字键盘
通过 `random-key-order` 属性可以随机排序数字键盘,常用于安全等级较高的场景 通过 `random-key-order` 属性可以随机排序数字键盘,常用于安全等级较高的场景
```html ```html
<van-cell @touchstart.native.stop="show = true" <van-cell @touchstart.native.stop="show = true">
>弹出配置随机数字的键盘</van-cell 弹出配置随机数字的键盘
> </van-cell>
<van-number-keyboard <van-number-keyboard
:show="show" :show="show"
:random-key-order="true" random-key-order
@blur="show = false" @blur="show = false"
@input="onInput" @input="onInput"
@delete="onDelete" @delete="onDelete"
/> />
``` ```
```js
import { Toast } from 'vant';
export default {
data() {
return {
show: true,
};
},
methods: {
onInput(value) {
Toast(value);
},
onDelete() {
Toast('删除');
},
},
};
```
### 双向绑定 ### 双向绑定
可以通过 `v-model` 绑定键盘当前输入值。 可以通过 `v-model` 绑定键盘当前输入值。
@ -210,7 +190,7 @@ export default {
| hide-on-click-outside | 点击外部时是否收起键盘 | _boolean_ | `true` | | hide-on-click-outside | 点击外部时是否收起键盘 | _boolean_ | `true` |
| get-container `v2.10.0` | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| () => Element_ | - | | get-container `v2.10.0` | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| () => Element_ | - |
| safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` | | safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` |
| random-key-order | 是否随机键盘数字 | _boolean_ | `false` | | random-key-order `v2.12.2` | 是否将通过随机顺序展示按键 | _boolean_ | `false` |
### Events ### Events

View File

@ -15,6 +15,9 @@
<van-cell is-link @touchstart.native.stop="keyboard = 'multiExtraKey'"> <van-cell is-link @touchstart.native.stop="keyboard = 'multiExtraKey'">
{{ t('button5') }} {{ t('button5') }}
</van-cell> </van-cell>
<van-cell is-link @touchstart.native.stop="keyboard = 'randomKeyOrder'">
{{ t('button6') }}
</van-cell>
<van-field <van-field
readonly readonly
@ -71,13 +74,21 @@
@delete="onDelete" @delete="onDelete"
/> />
<van-number-keyboard
v-if="!isTest"
:show="keyboard === 'randomKeyOrder'"
random-key-order
@blur="keyboard = ''"
@input="onInput"
@delete="onDelete"
/>
<van-number-keyboard <van-number-keyboard
v-model="value" v-model="value"
:show="keyboard === 'bindValue'" :show="keyboard === 'bindValue'"
maxlength="6" maxlength="6"
@blur="keyboard = ''" @blur="keyboard = ''"
/> />
</demo-section> </demo-section>
</template> </template>
@ -93,10 +104,12 @@ export default {
button3: '弹出身份证号键盘', button3: '弹出身份证号键盘',
button4: '弹出带标题的键盘', button4: '弹出带标题的键盘',
button5: '弹出配置多个按键的键盘', button5: '弹出配置多个按键的键盘',
button6: '弹出配置随机数字的键盘',
extraKey: '左下角按键内容',
bindValue: '双向绑定', bindValue: '双向绑定',
clickToInput: '点此输入', clickToInput: '点此输入',
extraKey: '左下角按键内容',
multiExtraKey: '配置多个按键', multiExtraKey: '配置多个按键',
randomKeyOrder: '随机数字键盘',
}, },
'en-US': { 'en-US': {
close: 'Close', close: 'Close',
@ -107,10 +120,12 @@ export default {
button3: 'Show IdNumber Keyboard', button3: 'Show IdNumber Keyboard',
button4: 'Show Keyboard With Title', button4: 'Show Keyboard With Title',
button5: 'Show Keyboard With Multiple ExtraKey', button5: 'Show Keyboard With Multiple ExtraKey',
button6: 'Show Keyboard With Random Key Order',
bindValue: 'Bind Value', bindValue: 'Bind Value',
clickToInput: 'Click To Input', clickToInput: 'Click To Input',
extraKey: 'IdNumber Keyboard', extraKey: 'IdNumber Keyboard',
multiExtraKey: 'Multiple ExtraKey', multiExtraKey: 'Multiple ExtraKey',
randomKeyOrder: 'Random Key Order',
}, },
}, },
@ -118,6 +133,7 @@ export default {
return { return {
value: '', value: '',
keyboard: 'default', keyboard: 'default',
isTest: process.env.NODE_ENV === 'test',
}; };
}, },

View File

@ -24,6 +24,7 @@ export default createComponent({
show: Boolean, show: Boolean,
title: String, title: String,
zIndex: [Number, String], zIndex: [Number, String],
randomKeyOrder: Boolean,
closeButtonText: String, closeButtonText: String,
deleteButtonText: String, deleteButtonText: String,
closeButtonLoading: Boolean, closeButtonLoading: Boolean,
@ -59,10 +60,6 @@ export default createComponent({
type: Boolean, type: Boolean,
default: true, default: true,
}, },
randomKeyOrder: {
type: Boolean,
default: false,
},
}, },
watch: { watch: {

View File

@ -32,6 +32,12 @@ exports[`renders demo correctly 1`] = `
</div><i class="van-icon van-icon-arrow van-cell__right-icon"> </div><i class="van-icon van-icon-arrow van-cell__right-icon">
<!----></i> <!----></i>
</div> </div>
<div role="button" tabindex="0" class="van-cell van-cell--clickable">
<div class="van-cell__value van-cell__value--alone">
弹出配置随机数字的键盘
</div><i class="van-icon van-icon-arrow van-cell__right-icon">
<!----></i>
</div>
<div role="button" tabindex="0" class="van-cell van-cell--clickable van-field"> <div role="button" tabindex="0" class="van-cell van-cell--clickable van-field">
<div class="van-cell__title van-field__label"><span>双向绑定</span></div> <div class="van-cell__title van-field__label"><span>双向绑定</span></div>
<div class="van-cell__value van-field__value"> <div class="van-cell__value van-field__value">
@ -277,6 +283,7 @@ exports[`renders demo correctly 1`] = `
</div> </div>
</div> </div>
</div> </div>
<!---->
<div class="van-number-keyboard" style="display: none;" name="van-slide-up"> <div class="van-number-keyboard" style="display: none;" name="van-slide-up">
<div class="van-number-keyboard__body"> <div class="van-number-keyboard__body">
<div class="van-number-keyboard__keys"> <div class="van-number-keyboard__keys">