fuliqi
2025-01-15 79f0dbe2bc5588c617ddfd82ac027977c764f5fe
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 '@/utils/request';
 
// 获取核算记录分页
export const getCalculateRecords = (params) => {
  return axios({
    url: "/calculate-record/page",
    method: "GET",
    params: params
  })
}
 
// 获取核算记录列表
export const getCalculateRecordList = () => {
  return axios({
    url: "/calculate-record/list",
    method: "GET"
  })
}
 
// 通过id获取核算记录
export const getCalculateRecordById = (params) => {
  return axios({
    url: "/calculate-record/" + params,
    method: "GET"
  })
}
 
// 通过id删除核算记录
export const deleteCalculateRecordById = (params) => {
  return axios({
    url: "/calculate-record/" + params,
    method: "DELETE"
  })
}
 
// 批量删除核算记录
export const deleteCalculateRecordByIds = (params) => {
  return axios({
    url: "/calculate-record/batch",
    method: "DELETE",
    data: params
  })
}
 
// 修改核算记录
export const editCalculateRecord = (params) => {
  return axios({
    url: "/calculate-record/",
    method: "PUT",
    data: params
  })
}
 
// 添加核算记录
export const addCalculateRecord = (params) => {
  return axios({
    url: "/calculate-record/",
    method: "POST",
    data: params
  })
}