search.js 932 B

12345678910111213141516171819202122232425262728293031323334353637
  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:19:45
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/search.js
  9. */
  10. export default {
  11. // search
  12. search: {
  13. shape: 'round',
  14. bgColor: '#f2f2f2',
  15. placeholder: '请输入关键字',
  16. clearabled: true,
  17. focus: false,
  18. showAction: true,
  19. actionStyle: () => ({}),
  20. actionText: '搜索',
  21. inputAlign: 'left',
  22. inputStyle: () => ({}),
  23. disabled: false,
  24. borderColor: 'transparent',
  25. searchIconColor: '#909399',
  26. searchIconSize: 22,
  27. color: '#606266',
  28. placeholderColor: '#909399',
  29. searchIcon: 'search',
  30. margin: '0',
  31. animation: false,
  32. value: '',
  33. maxlength: '-1',
  34. height: 32,
  35. label: null
  36. }
  37. }