props.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. export default {
  2. props: {
  3. // input的label提示语
  4. label: {
  5. type: String,
  6. default: uni.$u.props.formItem.label
  7. },
  8. uclass:{
  9. type: String,
  10. default: uni.$u.props.formItem.uclass
  11. },
  12. // 绑定的值
  13. prop: {
  14. type: String,
  15. default: uni.$u.props.formItem.prop
  16. },
  17. // 是否显示表单域的下划线边框
  18. borderBottom: {
  19. type: [String, Boolean],
  20. default: uni.$u.props.formItem.borderBottom
  21. },
  22. // label的位置,left-左边,top-上边
  23. labelPosition: {
  24. type: String,
  25. default: uni.$u.props.formItem.labelPosition
  26. },
  27. // label的宽度,单位px
  28. labelWidth: {
  29. type: [String, Number],
  30. default: uni.$u.props.formItem.labelWidth
  31. },
  32. // 右侧图标
  33. rightIcon: {
  34. type: String,
  35. default: uni.$u.props.formItem.rightIcon
  36. },
  37. // 左侧图标
  38. leftIcon: {
  39. type: String,
  40. default: uni.$u.props.formItem.leftIcon
  41. },
  42. // 是否显示左边的必填星号,只作显示用,具体校验必填的逻辑,请在rules中配置
  43. required: {
  44. type: Boolean,
  45. default: uni.$u.props.formItem.required
  46. },
  47. leftIconStyle: {
  48. type: [String, Object],
  49. default: uni.$u.props.formItem.leftIconStyle,
  50. }
  51. }
  52. }