mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 04:19:36 +08:00
21 lines
417 B
JavaScript
21 lines
417 B
JavaScript
![]() |
var WxParse = require('../../../wxParse/wxParse.js')
|
||
|
Page({
|
||
|
|
||
|
/**
|
||
|
* 页面的初始数据
|
||
|
*/
|
||
|
data: {
|
||
|
|
||
|
},
|
||
|
onLoad: function (e) {
|
||
|
let that = this
|
||
|
const eventChannel = this.getOpenerEventChannel()
|
||
|
eventChannel.on('toHome', (res) => {
|
||
|
var article = res.data.content
|
||
|
WxParse.wxParse('article', 'html', article, that);
|
||
|
that.setData({
|
||
|
datas: res.data
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
})
|