UNPKG

gtht-miniapp-sdk

Version:

gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

99 lines (98 loc) 1.3 kB
import { defaultConfig } from '../config'; import { shuffle } from '../../utils'; export const defaultKeyboardProps = defaultConfig.keyboard; export const numberKeys = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0']; export const digitKeys = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '0']; export const idcardKeys = [ '1', '2', '3', '4', '5', '6', '7', '8', '9', 'X', '0', ]; export const chineseKeys = [ '京', '津', '渝', '沪', '冀', '晋', '辽', '吉', '黑', '苏', '浙', '皖', '闽', '赣', '鲁', '豫', '鄂', '湘', '粤', '琼', '川', '贵', '云', '陕', '甘', '青', '蒙', '桂', '宁', '新', '藏', '港', '澳', '使', '领', '警', '学', ]; export const englishKeys = [ '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z', 'X', 'C', 'V', 'B', 'N', 'M', ]; export function getRandomKeys() { return shuffle(numberKeys.slice()); }