123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- import {
- myRequest
- } from '../request.js'
- export default {
- polyvSign(data) {
- return myRequest({
- url: '/polyv/video/sign/auth',
- method: 'get',
- data: data
- })
- },
- recordLast(data) {
- return myRequest({
- url: '/study/record/last',
- method: 'get',
- data: data
- })
- },
- menuExamList(data) {
- return myRequest({
- url: '/course/menu/exam/list',
- method: 'get',
- data: data
- })
- },
- reSectionList(data) {
- return myRequest({
- url: '/course/sectionList',
- method: 'get',
- data: data
- })
- },
- reChapterList(data) {
- return myRequest({
- url: '/course/chapterList',
- method: 'get',
- data: data
- })
- },
- appBeforeAddress(data) {
- return myRequest({
- url: '/app/before/address',
- method: 'get',
- data: data
- })
- },
-
-
- reMenuList(data) {
- return myRequest({
- url: '/course/menuList',
- method: 'get',
- data: data
- })
- },
- menuList(data) {
- return myRequest({
- url: '/app/common/course/menuList',
- method: 'get',
- data: data,
- noToken: true
- })
- },
- chapterList(data) {
- return myRequest({
- url: '/app/common/course/chapterList/'+data,
- method: 'get',
- data: data,
- noToken: true
- })
- },
- sectionList(data) {
- return myRequest({
- url: '/app/common/course/sectionList/'+data,
- method: 'get',
- data: data,
- noToken: true
- })
- },
- courseGoodsList(data) {
- return myRequest({
- url: '/course/goodsList',
- method: 'get',
- data: data
- })
- },
- courseCourseList(data) {
- return myRequest({
- url: '/course/courseList',
- method: 'get',
- data: data
- })
- },
- //商品双师资模板
- courseTeacherList(data) {
- return myRequest({
- url: '/goods/course/teacher/list',
- method: 'get',
- data: data
- })
- },
- courseDetail(data) {
- return myRequest({
- url: '/course/'+data,
- method: 'get'
- })
- },
- courseBusiness(data) {
- return myRequest({
- url: '/app/common/course/business/'+data,
- method: 'get',
- noToken:true
- })
- },
-
- courseHandouts(data) {
- return myRequest({
- url: '/course/handouts/'+data,
- method: 'get'
- })
- },
-
- courseGoodsRebuildStatus(data) {
- return myRequest({
- url: '/course/goodsRebuildStatus',
- method: 'get',
- data:data
- })
- },
- faceCertificationIDCardOCR(data) {
- return myRequest({
- url: '/face/certification/IDCardOCR',
- method: 'post',
- data:data
- })
- },
-
- facCertificationImageRecognition(data) {
- return myRequest({
- url: '/face/certification/ImageRecognition',
- method: 'post',
- data:data
- })
- },
-
- faceCertificationIdCardCompareFace(data) {
- return myRequest({
- url: '/face/certification/idCardCompareFace',
- method: 'post',
- data:data
- })
- },
-
- faceCertificationCompareFace(data) {
- return myRequest({
- url: '/face/certification/CompareFace',
- method: 'post',
- data:data
- })
- },
-
- gradeCheckGoodsStudy(data) {
- return myRequest({
- url: '/grade/grade/checkGoodsStudy',
- method: 'get',
- data:data
- })
- },
-
-
-
- polyvLiveHistoryChatMsgList(data) {
- return myRequest({
- url: '/polyv/live/historyChatMsgList',
- method: 'get',
- data:data
- })
- },
- studyRecordQueryLiveLast(data) {
- return myRequest({
- url: '/study/record/queryLiveLast',
- method: 'get',
- data:data
- })
- },
-
- courseMajorList (data) {
- return myRequest({
- url: '/course/major/list',
- method: 'get',
- data:data
- })
- },
- // 学习中心的直播课列表
- getgoodsLiveList (data) {
- return myRequest({
- url: '/goods/getLiveList',
- method: 'get',
- data:data
- })
- },
- // 查询用户拥有视频+直播商品
- listUserVideoLive (data) {
- return myRequest({
- url: '/goods/listUserVideoLive',
- method: 'get',
- data:data
- })
- },
- reSectionExamList(data) {
- return myRequest({
- url: '/course/sectionExamList',
- method: 'get',
- data: data
- })
- },
- }
|