Skip to content

NumberKeyboard 数字键盘

虚拟数字键盘,用于输入数字、密码或身份证等场景。

基本用法

可以通过 v-model:visible 控制键盘是否展示。

html
<wd-cell title="默认键盘" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" @input="onInput" @delete="onDelete"></wd-number-keyboard>
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

带右侧栏的键盘

mode 属性设置为 custom 来展示键盘的右侧栏,常用于输入金额的场景。

html
<wd-cell title="带右侧栏的键盘" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" mode="custom" extra-key="." close-text="完成" @input="onInput" @delete="onDelete"></wd-number-keyboard>
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

身份证键盘

通过 extra-key 属性可以设置左下角按键内容,比如需要输入身份证号时,可以将 extra-key 设置为 X

html
<wd-cell title="身份证键盘" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" extra-key="X" close-text="完成" @input="onInput" @delete="onDelete" />
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

带标题的键盘

通过 title 属性可以设置键盘标题。

html
<wd-cell title="带标题的键盘" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" title="输入密码" extra-key="." close-text="完成" @input="onInput" @delete="onDelete" />
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

使用 slot 自定义标题

html
<wd-cell title="使用 slot 自定义标题" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" extra-key="." close-text="完成" @input="onInput" @delete="onDelete">
  <template #title>
    <text style="color: red">自定义标题</text>
  </template>
</wd-number-keyboard>
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

多个额外按键

modecustom 时,支持以数组的形式配置两个 extra-key

html
<wd-cell title="多个额外按键" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" mode="custom" :extra-key="['00', '.']" close-text="完成" @input="onInput" @delete="onDelete" />
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

随机数字键盘

通过 random-key-order 属性可以随机排序数字键盘,常用于安全等级较高的场景。

html
<wd-cell title="随机数字键盘" is-link @click="showKeyBoard" />

<wd-number-keyboard v-model:visible="visible" random-key-order @input="onInput" @delete="onDelete" />
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

双向绑定

可以通过 v-model 绑定键盘当前输入值,并通过 maxlength 属性来限制输入长度。

html
<wd-cell title="双向绑定" :value="value1" is-link @click="showKeyBoard" />
<wd-number-keyboard
  v-model="value1"
  :maxlength="6"
  v-model:visible="visible"
  title="键盘标题"
  extra-key="."
  close-text="完成"
  @input="onInput"
  @delete="onDelete"
></wd-number-keyboard>
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)
const value1 = ref<string>('')

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

展示蒙层遮罩

hideOnClickOutside控制键盘弹窗是否有遮罩,通过modal控制遮罩是否为透明。

提示

当前modal仅控制遮罩是否为透明,hideOnClickOutside控制弹窗是否有遮罩,当存在遮罩时,点击遮罩就可以关闭键盘,但是键盘展开时必须点击遮罩关闭当前键盘后才可以再点击别的按钮。也可以关闭hideOnClickOutside,手动控制键盘是否展示来实现点击外部时收起键盘,这样更灵活。

html
<wd-cell title="双向绑定" :value="value1" is-link @click="showKeyBoard" />
<wd-number-keyboard :modal="true" :hide-on-click-outside="true" v-model:visible="visible" @input="onInput" @delete="onDelete" />
ts
const { show: showToast } = useToast()
const visible = ref<boolean>(false)
const value1 = ref<string>('')

function showKeyBoard() {
  visible.value = true
}

const onInput = (value) => showToast(`${value}`)
const onDelete = () => showToast('删除')

Attributes

参数说明类型可选值默认值最低版本
v-model:visible是否展开boolean-false0.1.65
v-model绑定的值string--0.1.65
title标题string--0.1.65
mode键盘模式stringdefault, customdefault0.1.65
zIndex层级number-1000.1.65
maxlength最大长度number-Infinity0.1.65
showDeleteKey是否显示删除键boolean-true0.1.65
randomKeyOrder是否随机键盘按键顺序boolean-false0.1.65
closeText确认按钮文本string--0.1.65
deleteText删除按钮文本string--0.1.65
closeButtonLoading关闭按钮是否显示加载状态boolean-false0.1.65
modal是否显示蒙层遮罩boolean-false0.1.65
hideOnClickOutside是否在点击外部时收起键盘boolean-true0.1.65
lockScroll是否锁定滚动boolean-true0.1.65
safeAreaInsetBottom是否在底部安全区域内boolean-true0.1.65
extraKey额外按键string / string[]--0.1.65

Slot

name说明类型最低版本
title标题-1.2.12

Events

事件名称说明参数最低版本
input点击按键时触发key: string-
delete点击删除键时触发--
close点击关闭按钮或非键盘区域时触发--

外部样式类

类名说明最低版本
custom-class根节点样式类0.1.65
custom-style根节点样式0.1.65

Released under the MIT License.

Released under the MIT License.