12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import APIConfig from './api.js';
- import efunRequest from '../utils/efunRequest'
- export default class CourseDetails {
- // 获取课程详细信息
- static getCourseDetails(courseId) {
- return efunRequest.getHttpRequest().url(`http://ott80testlibrary.yifangjiaoyu.cn/mobile/course/${courseId}`).get();
- }
- // 获取评论列表
- static getPostsList(columnId) {
- console.log(columnId)
- // return efunRequest.getHttpRequest().url(`http://ott80test-base.yifangjiaoyu.cn/mobile/posts`).header({
- // uid: ''
- // }).params({
- // columnId,
- // pageNo: '',
- // pageSize: ''
- // }).get();
- return fetch(`http://ott80test-base.yifangjiaoyu.cn/mobile/posts?columnId=${columnId}`,{
- method:"GET",
- headers:{
- "uid": ""
- }
- })
- .then((response)=>response.json())
- }
- // 收藏
- static setFavorites(data) {
- return fetch(`http://ott80test-base.yifangjiaoyu.cn/mobile/favorites`,{
- method:"POST",
- headers:{
- "Accept": "application/json",
- "Content-Type": "application/json",
- "uid": ""
- },
- body: JSON.stringify(data),
- })
- .then((response)=>response.json())
- }
- // 获取是否收藏
- static getisFavorites(data) {
- return fetch(`http://ott80test-base.yifangjiaoyu.cn/mobile/favorites/isFavorites`,{
- method:"POST",
- headers:{
- "Accept": "application/json",
- "Content-Type": "application/json",
- "uid": ""
- },
- body: JSON.stringify(data),
- })
- .then((response)=>response.json())
- }
- // 写评论
- static addCommentList(data) {
- return fetch(`http://ott80test-base.yifangjiaoyu.cn/mobile/posts`,{
- method:"POST",
- headers:{
- "Accept": "application/json",
- "Content-Type": "application/json",
- "uid": ""
- },
- body: JSON.stringify(data),
- })
- .then((response)=>response.json())
- }
- // 输入评论
- static addReplyList(data) {
- return fetch(`http://ott80test-base.yifangjiaoyu.cn/mobile/posts/reply`,{
- method:"POST",
- headers:{
- "Accept": "application/json",
- "Content-Type": "application/json",
- "uid": ""
- },
- body: JSON.stringify(data),
- })
- .then((response)=>response.json())
- }
- }
|