lessonsList.js 718 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // pages/Components/lessonsList/lessonsList.js
  2. Component({
  3. lifetimes: {
  4. attached: function() {
  5. // 在组件实例进入页面节点树时执行
  6. },
  7. detached: function() {
  8. // 在组件实例被从页面节点树移除时执行
  9. },
  10. },
  11. /**
  12. * 组件的属性列表
  13. */
  14. properties: {
  15. list:{
  16. type: Array,
  17. value:[]
  18. },
  19. showBtn:{
  20. type: Boolean,
  21. value: true,
  22. },
  23. showDate:{
  24. type: Boolean,
  25. value: true,
  26. }
  27. },
  28. /**
  29. * 组件的初始数据
  30. */
  31. data: {
  32. },
  33. /**
  34. * 组件的方法列表
  35. */
  36. methods: {
  37. toPages:function(e){
  38. wx.navigateTo({
  39. url: e.currentTarget.dataset.url,
  40. })
  41. },
  42. }
  43. })