h5Page.js
375 Bytes
import {
yasReport,
YB_PAGE_OPEN_L
} from '../../libs/yas';
Page({
data: {
url: '',
title: '',
},
onLoad: function (options) {
let url = decodeURIComponent(options.url);
let title = decodeURIComponent(options.title);
yasReport(YB_PAGE_OPEN_L);
this.setData({
url,
});
wx.setNavigationBarTitle({
title,
});
},
})