numberBox.js 832 B

1234567891011121314151617181920212223242526272829303132333435
  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:11:46
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/numberBox.js
  9. */
  10. export default {
  11. // 步进器组件
  12. numberBox: {
  13. name: '',
  14. value: 0,
  15. min: 1,
  16. max: Number.MAX_SAFE_INTEGER,
  17. step: 1,
  18. integer: false,
  19. disabled: false,
  20. disabledInput: false,
  21. asyncChange: false,
  22. inputWidth: 35,
  23. showMinus: true,
  24. showPlus: true,
  25. decimalLength: null,
  26. longPress: true,
  27. color: '#323233',
  28. buttonSize: 30,
  29. bgColor: '#EBECEE',
  30. cursorSpacing: 100,
  31. disableMinus: false,
  32. disablePlus: false,
  33. iconStyle: ''
  34. }
  35. }