picker.js 859 B

123456789101112131415161718192021222324252627282930313233343536
  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:18:20
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/picker.js
  9. */
  10. export default {
  11. // picker
  12. picker: {
  13. show: false,
  14. popupMode: 'bottom',
  15. showToolbar: true,
  16. title: '',
  17. columns: [],
  18. loading: false,
  19. itemHeight: 44,
  20. cancelText: '取消',
  21. confirmText: '确定',
  22. cancelColor: '#909193',
  23. confirmColor: '',
  24. visibleItemCount: 5,
  25. keyName: 'text',
  26. valueName: 'value',
  27. closeOnClickOverlay: false,
  28. defaultIndex: [],
  29. immediateChange: true,
  30. zIndex: 10076,
  31. disabled: false,
  32. disabledColor: '',
  33. placeholder: '请选择',
  34. inputProps: {},
  35. }
  36. }