groupWork.js 823 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Component({
  2. properties: {
  3. show:{
  4. type: Boolean,
  5. value:false,
  6. observer: function (newVal){
  7. this.setData({ show: newVal });
  8. }
  9. },
  10. datas:{
  11. type: Object,
  12. observer:function(val){
  13. this.setData({ showObj: val });
  14. }
  15. },
  16. remainTime:{
  17. type: Object,
  18. observer:function(val){
  19. this.setData({ updateTime: val });
  20. }
  21. },
  22. },
  23. data:{
  24. show:false,
  25. showObj:{},
  26. updateTime:{},
  27. },
  28. methods:{
  29. close(){
  30. this.triggerEvent("close", false);
  31. },
  32. // 单独报名
  33. signUp(){
  34. this.triggerEvent("signUp", {alone:1,pop:true});
  35. },
  36. // 新开拼团
  37. newGroup(){
  38. this.triggerEvent("newGroup", 1);
  39. },
  40. //一键参团
  41. joinGroup(){
  42. this.triggerEvent("joinGroup", 0);
  43. }
  44. }
  45. })