Files
xuan_wechat/pages/richText/richText.js
2023-09-14 09:25:37 +08:00

28 lines
551 B
JavaScript

Page({
/**
* 页面的初始数据
*/
data: {
content: ""
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
wx.showLoading({
title: '加载中...',
mask : true
})
wx.$api.auth.richText(options.id).then(res => {
this.setData({
content: res.data.content
})
wx.setNavigationBarTitle({
title: res.data.title,
})
wx.hideLoading()
})
}
})