index.js 297 B

12345678910111213141516171819
  1. Component({
  2. properties: {
  3. worksList: {
  4. type: Array,
  5. value: [],
  6. },
  7. },
  8. data: {
  9. },
  10. methods: {
  11. jumpReading({
  12. currentTarget
  13. }) {
  14. wx.navigateTo({
  15. url: `/pages/reading/index?videoId=${currentTarget.dataset.id}&autoPlay=true`
  16. })
  17. }
  18. }
  19. })