curriculum.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // compontents/curriculum/curriculum.js
  2. Component({
  3. options: {
  4. multipleSlots: true // 在组件定义时的选项中启用多slot支持
  5. },
  6. /**
  7. * 组件的属性列表
  8. */
  9. properties: {
  10. studyLog: {
  11. type: Array,
  12. value: []
  13. },
  14. height: {
  15. type: String,
  16. value: ''
  17. }
  18. },
  19. /**
  20. * 组件的初始数据
  21. */
  22. data: {
  23. flag: false,
  24. animationData: {},
  25. downUp: '展开',
  26. src: '../../pages/image/toDown.png',
  27. },
  28. /**
  29. * 组件的方法列表
  30. */
  31. methods: {
  32. onTap (e) {
  33. let flage = e.target.dataset.flag;
  34. const height = this.properties.studyLog.length * 68;
  35. if(flage){
  36. this.util(flage, '700rpx');
  37. this.setData({
  38. 'flag': false,
  39. 'downUp': '展开',
  40. 'src':'../../pages/image/toDown.png'
  41. })
  42. } else {
  43. this.util(flage, height + 'rpx');
  44. this.setData({
  45. 'flag': true,
  46. 'downUp': '收起',
  47. 'src': '../../pages/image/toUp.png'
  48. })
  49. }
  50. },
  51. /* 创建动画并执行 */
  52. util (flag, height) {
  53. // 创建动画实例
  54. var animation = wx.createAnimation({
  55. duration: 200, //动画时长
  56. timingFunction: "linear", //线性
  57. delay: 0 //0则不延迟
  58. });
  59. this.animation = animation;
  60. animation.height(height).step();
  61. this.setData({
  62. animationData: animation.export()
  63. })
  64. }
  65. },
  66. ready: function () {
  67. //console.log(this.properties.studyLog)
  68. }
  69. })