21 lines
383 B
JavaScript
21 lines
383 B
JavaScript
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
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,
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}) |