class.js 516 B

123456789101112131415161718192021222324252627
  1. Page({
  2. data: {
  3. fullScreenBtn: false,
  4. playBtn: false,
  5. gesture: true,
  6. },
  7. onLoad: function (option) {
  8. if(option.title){
  9. wx.setNavigationBarTitle({
  10. title: option.title//页面标题为路由参数
  11. })
  12. this.setData({
  13. title: option.title,
  14. id: option.id
  15. })
  16. }
  17. },
  18. goToReading: function(){
  19. let id = this.data.id;
  20. let title = this.data.title;
  21. wx.navigateTo({
  22. url: `../../main/reading/reading?id=${id}&title=${title}`
  23. })
  24. }
  25. })