综合办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

props.js 507B

1234567891011121314151617181920212223242526272829
  1. export default {
  2. props: {
  3. // 激活部分的颜色
  4. activeColor: {
  5. type: String,
  6. default: '#19be6b'
  7. },
  8. inactiveColor: {
  9. type: String,
  10. default: '#ececec'
  11. },
  12. // 进度百分比,数值
  13. percentage: {
  14. type: [String, Number],
  15. default: 0
  16. },
  17. // 是否在进度条内部显示百分比的值
  18. showText: {
  19. type: Boolean,
  20. default: true
  21. },
  22. // 进度条的高度,单位px
  23. height: {
  24. type: [String, Number],
  25. default: 12
  26. },
  27. ...uni.$uv?.props?.lineProgress
  28. }
  29. }