Files
YelayMaths/pages/WebPageDetails/WebPageDetails.js
T
2026-01-05 18:07:57 +08:00

103 lines
1.7 KiB
JavaScript

// pages/WebPageDetails/WebPageDetails.js
Page({
/**
* 页面的初始数据
*/
data: {
htmlcontent: " ",
author: "",
title: "",
date: ""
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
var receivedIndex = options.index ?? 0;
var tempWebPagesContent = wx.getStorageSync('WebPagesContent')[receivedIndex];
if (tempWebPagesContent.网页内容) {
this.setData({
htmlcontent: tempWebPagesContent.网页内容,
author: tempWebPagesContent.发布人,
title: tempWebPagesContent.网页标题,
date: tempWebPagesContent.发布日期
});
} else {
this.setData({
htmlcontent: " ",
author: "",
title: "",
date: ""
});
}
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
const promise = new Promise(resolve => {
setTimeout(() => {
resolve({
title: '叶雷讲数学'
})
}, 0)
})
return {
title: '叶雷讲数学',
path: '',
promise
}
},
//允许分享到朋友圈
onShareTimeline() {
}
})