1234567891011121314151617181920212223242526272829 |
- import {
- myRequest
- } from '../request.js'
- export default {
- //确认重学
- courseperiodrebuild(data) {
- return myRequest({
- url: '/course/period/rebuild',
- method: 'post',
- data: data
- })
- },
- //查看班级作弊重学详细情况
- getcourseperiodcheat(data) {
- return myRequest({
- url: '/course/period/cheat',
- method: 'get',
- data: data
- })
- },
- //查询用户拥有商品的学时记录
- getcourseperiodlistGoods(data) {
- return myRequest({
- url: '/course/period/listGoods',
- method: 'get',
- data: data
- })
- },
- }
|