1234567891011121314151617181920212223 |
- Page({
- data: {
- webViewUrl: '',
- title: ''
- },
- onLoad: function(options) {
- // 从路由参数中获取URL和标题
- this.setData({
- webViewUrl: decodeURIComponent(options.url),
- title: options.title || 'VR全景'
- });
-
- // 设置导航栏标题
- wx.setNavigationBarTitle({
- title: this.data.title
- });
- },
- onReady: function() {
- // 页面加载完成
- }
- });
|