index.js 496 B

1234567891011121314151617181920212223242526272829303132333435
  1. // lionfish_comshop/components/tradeStatus/index.js
  2. require("../../utils/timeFormat");
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. status: {
  9. type: String
  10. },
  11. pickUpTotal: {
  12. type: Number
  13. },
  14. tradeStatusInfo: {
  15. type: Object
  16. }
  17. },
  18. /**
  19. * 组件的初始数据
  20. */
  21. data: {
  22. maxPayTime: 30
  23. },
  24. /**
  25. * 组件的方法列表
  26. */
  27. methods: {
  28. timeOut: function () {
  29. this.triggerEvent("timeOut");
  30. }
  31. }
  32. })