17 lines
301 B
JavaScript
17 lines
301 B
JavaScript
Page({
|
|
data: {
|
|
nodes: {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
wx.$api.user.getQHKIntroduce().then(res => {
|
|
if (res.content) {
|
|
var nodes = res.content.replace('<img', '<img style="max-width:100%;height:auto""');
|
|
this.setData({
|
|
nodes: nodes,
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}) |