luohairen
2024-10-29 a38b2ce4cf02b6ac7069ac89517287bf78f4dfdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import axios from "./request";
 
// 获取作弊记录分页
export const getCheatRecords = (params) => {
    return axios({
        url: "/api/cheat-record/page",
        method: "GET",
        params: params
    })
}
 
// 获取作弊记录列表
export const getCheatRecordList = () => {
    return axios({
        url: "/api/cheat-record/list",
        method: "GET"
    })
}
 
// 通过id获取作弊记录
export const getCheatRecordById = (params) => {
    return axios({
        url: "/api/cheat-record/" + params,
        method: "GET"
    })
}
 
// 通过id删除作弊记录
export const deleteCheatRecordById = (params) => {
    return axios({
        url: "/api/cheat-record/" + params,
        method: "DELETE"
    })
}
 
// 批量删除作弊记录
export const deleteCheatRecordByIds = (params) => {
    return axios({
        url: "/api/cheat-record/batch",
        method: "DELETE",
        data: params
    })
}
 
// 修改作弊记录
export const editCheatRecord = (params) => {
    return axios({
        url: "/api/cheat-record/",
        method: "PUT",
        data: params
    })
}
 
// 添加作弊记录
export const addCheatRecord = (params) => {
    return axios({
        url: "/api/cheat-record/",
        method: "POST",
        data: params
    })
}