zhangmeng
2024-04-19 e3ba120cb766a17e098e58d11c39ffc600a3070c
commit | author | age
e3ba12 1 export default {
Z 2     props: {
3         // 键盘的类型,number-数字键盘,card-身份证键盘
4         mode: {
5             type: String,
6             default: uni.$u.props.numberKeyboard.value
7         },
8         // 是否显示键盘的"."符号
9         dotDisabled: {
10             type: Boolean,
11             default: uni.$u.props.numberKeyboard.dotDisabled
12         },
13         // 是否打乱键盘按键的顺序
14         random: {
15             type: Boolean,
16             default: uni.$u.props.numberKeyboard.random
17         }
18     }
19 }