props.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. export default {
  2. props: {
  3. // 到顶部的距离
  4. top: {
  5. type: [String, Number],
  6. default: uni.$u.props.notify.top
  7. },
  8. // 是否展示组件
  9. // show: {
  10. // type: Boolean,
  11. // default: uni.$u.props.notify.show
  12. // },
  13. // type主题,primary,success,warning,error
  14. type: {
  15. type: String,
  16. default: uni.$u.props.notify.type
  17. },
  18. // 字体颜色
  19. color: {
  20. type: String,
  21. default: uni.$u.props.notify.color
  22. },
  23. // 背景颜色
  24. bgColor: {
  25. type: String,
  26. default: uni.$u.props.notify.bgColor
  27. },
  28. // 展示的文字内容
  29. message: {
  30. type: String,
  31. default: uni.$u.props.notify.message
  32. },
  33. // 展示时长,为0时不消失,单位ms
  34. duration: {
  35. type: [String, Number],
  36. default: uni.$u.props.notify.duration
  37. },
  38. // 字体大小
  39. fontSize: {
  40. type: [String, Number],
  41. default: uni.$u.props.notify.fontSize
  42. },
  43. // 是否留出顶部安全距离(状态栏高度)
  44. safeAreaInsetTop: {
  45. type: Boolean,
  46. default: uni.$u.props.notify.safeAreaInsetTop
  47. }
  48. }
  49. }