keyboard.js 781 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 17:07:49
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/keyboard.js
  9. */
  10. import { t } from '../../libs/i18n'
  11. export default {
  12. // 键盘组件
  13. keyboard: {
  14. mode: 'number',
  15. dotDisabled: false,
  16. tooltip: true,
  17. showTips: true,
  18. tips: '',
  19. showCancel: true,
  20. showConfirm: true,
  21. random: false,
  22. safeAreaInsetBottom: true,
  23. closeOnClickOverlay: true,
  24. show: false,
  25. overlay: true,
  26. zIndex: 10075,
  27. cancelText: t("up.common.cancel"),
  28. confirmText: t("up.common.confirm"),
  29. autoChange: false
  30. }
  31. }