props.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import defprops from '../../libs/config/props';
  2. export default {
  3. props: {
  4. // 倒计时总秒数
  5. seconds: {
  6. type: [String, Number],
  7. default: defprops.code.seconds
  8. },
  9. // 尚未开始时提示
  10. startText: {
  11. type: String,
  12. default: defprops.code.startText
  13. },
  14. // 正在倒计时中的提示
  15. changeText: {
  16. type: String,
  17. default: defprops.code.changeText
  18. },
  19. // 倒计时结束时的提示
  20. endText: {
  21. type: String,
  22. default: defprops.code.endText
  23. },
  24. // 是否在H5刷新或各端返回再进入时继续倒计时
  25. keepRunning: {
  26. type: Boolean,
  27. default: defprops.code.keepRunning
  28. },
  29. // 为了区分多个页面,或者一个页面多个倒计时组件本地存储的继续倒计时变了
  30. uniqueKey: {
  31. type: String,
  32. default: defprops.code.uniqueKey
  33. }
  34. }
  35. }