| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import request from '@/utils/request'
- // 查询奖励领取记录列表
- export function listRewardRound(query) {
- return request({
- url: '/course/rewardRound/list',
- method: 'get',
- params: query
- })
- }
- // 查询奖励领取记录详细
- export function getRewardRound(id) {
- return request({
- url: '/course/rewardRound/' + id,
- method: 'get'
- })
- }
- // 新增奖励领取记录
- export function addRewardRound(data) {
- return request({
- url: '/course/rewardRound',
- method: 'post',
- data: data
- })
- }
- // 修改奖励领取记录
- export function updateRewardRound(data) {
- return request({
- url: '/course/rewardRound',
- method: 'put',
- data: data
- })
- }
- // 删除奖励领取记录
- export function delRewardRound(id) {
- return request({
- url: '/course/rewardRound/' + id,
- method: 'delete'
- })
- }
- // 导出奖励领取记录
- export function exportRewardRound(query) {
- return request({
- url: '/course/rewardRound/export',
- method: 'get',
- params: query
- })
- }
|