Files
barter-app/手太欠/优迪尔-小程序/pages/publicDetails/index.js
张慢慢 1d6e2451a7 [上传]
2021-06-02 17:25:52 +08:00

45 lines
1.1 KiB
JavaScript

/*
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
Page({
/**
* 页面的初始数据
*/
data: {
dataType : '', //tea为教师端 stu为学生端
coursesId : '', //课程详情id
chapterText : '', //课程数据
content : '', //课程详情
target : '', //课程详情
},
/**
* 生命周期函数--监听页面加载
*/
onLoad (options) {
this.setData({
dataType : options.type,
coursesId : options.id
})
// 获取课程详情
this.detailInfo();
},
/**
* 课程详情
*/
detailInfo(page) {
wx.$api.teaIndex.coursedet(this.data.coursesId).then(res=>{
this.setData({
chapterText : res.data,
content : res.data.content.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"'),
target : res.data.target.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"'),
})
})
}
})