Files
王鹏 0c2edb6036 init
2025-08-14 14:52:01 +08:00

25 lines
409 B
JavaScript

import userArticleApi from "../../../api/userArticleApi"
Page({
data: {
articles: []
},
goback(){
wx.navigateBack(1)
},
onLoad(){
userArticleApi.getUserDownloadArticleList().then(res=>{
if (res.data.length>0) {
res.data.forEach(item=>{
item.tags = JSON.parse(item.tags)
})
}
this.setData({
articles: res.data
})
})
}
})