props.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. export default {
  2. props: {
  3. // 标签类型info、primary、success、warning、error
  4. type: {
  5. type: String,
  6. default: uni.$u.props.tag.type
  7. },
  8. // 不可用
  9. disabled: {
  10. type: [Boolean, String],
  11. default: uni.$u.props.tag.disabled
  12. },
  13. // 标签的大小,large,medium,mini
  14. size: {
  15. type: String,
  16. default: uni.$u.props.tag.size
  17. },
  18. // tag的形状,circle(两边半圆形), square(方形,带圆角)
  19. shape: {
  20. type: String,
  21. default: uni.$u.props.tag.shape
  22. },
  23. // 标签文字
  24. text: {
  25. type: [String, Number],
  26. default: uni.$u.props.tag.text
  27. },
  28. // 背景颜色,默认为空字符串,即不处理
  29. bgColor: {
  30. type: String,
  31. default: uni.$u.props.tag.bgColor
  32. },
  33. // 标签字体颜色,默认为空字符串,即不处理
  34. color: {
  35. type: String,
  36. default: uni.$u.props.tag.color
  37. },
  38. // 标签的边框颜色
  39. borderColor: {
  40. type: String,
  41. default: uni.$u.props.tag.borderColor
  42. },
  43. // 关闭按钮图标的颜色
  44. closeColor: {
  45. type: String,
  46. default: uni.$u.props.tag.closeColor
  47. },
  48. // 点击时返回的索引值,用于区分例遍的数组哪个元素被点击了
  49. name: {
  50. type: [String, Number],
  51. default: uni.$u.props.tag.name
  52. },
  53. // // 模式选择,dark|light|plain
  54. // mode: {
  55. // type: String,
  56. // default: 'light'
  57. // },
  58. // 镂空时是否填充背景色
  59. plainFill: {
  60. type: Boolean,
  61. default: uni.$u.props.tag.plainFill
  62. },
  63. // 是否镂空
  64. plain: {
  65. type: Boolean,
  66. default: uni.$u.props.tag.plain
  67. },
  68. // 是否可关闭
  69. closable: {
  70. type: Boolean,
  71. default: uni.$u.props.tag.closable
  72. },
  73. // 是否显示
  74. show: {
  75. type: Boolean,
  76. default: uni.$u.props.tag.show
  77. },
  78. // 内置图标,或绝对路径的图片
  79. icon: {
  80. type: String,
  81. default: uni.$u.props.tag.icon
  82. }
  83. }
  84. }