search.js 1001 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. import { t } from '../../libs/i18n'
  11. export default {
  12. // search
  13. search: {
  14. shape: 'round',
  15. bgColor: '#f2f2f2',
  16. placeholder: t("up.search.placeholder"),
  17. clearabled: true,
  18. focus: false,
  19. showAction: true,
  20. actionStyle: {},
  21. actionText: t("up.common.search"),
  22. inputAlign: 'left',
  23. inputStyle: {},
  24. disabled: false,
  25. borderColor: 'transparent',
  26. searchIconColor: '#909399',
  27. searchIconSize: 22,
  28. color: '#606266',
  29. placeholderColor: '#909399',
  30. searchIcon: 'search',
  31. iconPosition: 'left',
  32. margin: '0',
  33. animation: false,
  34. value: '',
  35. maxlength: '-1',
  36. height: 32,
  37. label: null
  38. }
  39. }