award-list.js 347 B

1234567891011121314151617181920212223242526272829303132
  1. //Component Object
  2. Component({
  3. properties: {
  4. list:{
  5. type:Array,
  6. value:[]
  7. },
  8. },
  9. data: {
  10. },
  11. methods: {
  12. selectAward(){
  13. this.triggerEvent('selectAward')
  14. }
  15. },
  16. created: function(){
  17. },
  18. attached: function(){
  19. },
  20. ready: function(){
  21. },
  22. moved: function(){
  23. },
  24. detached: function(){
  25. },
  26. });