1234567891011121314151617181920212223242526 |
- const constant = require('../../../utils/constant.js');
- Page({
- data: {
- url: constant.app.webSkipUrl,
- },
- onLoad: function (options) {
- // 从 options 中获取传入的 url 参数
- var that = this;
- const url = that.data.url;
- if (url) {
- that.setData({
- url: url
- });
- } else {
- console.error('URL 参数未提供');
- }
- },
- onShareAppMessage() {
- return {
- title: 'OhPlay',
- path: 'pages/pageD/webview/webview'
- }
- },
- });
|