vr-detail.js 415 B

1234567891011121314151617181920212223
  1. Page({
  2. data: {
  3. webViewUrl: '',
  4. title: ''
  5. },
  6. onLoad: function(options) {
  7. // 从路由参数中获取URL和标题
  8. this.setData({
  9. webViewUrl: decodeURIComponent(options.url),
  10. title: options.title || 'VR全景'
  11. });
  12. // 设置导航栏标题
  13. wx.setNavigationBarTitle({
  14. title: this.data.title
  15. });
  16. },
  17. onReady: function() {
  18. // 页面加载完成
  19. }
  20. });