gaoluyang
2025-02-18 4e8e3e93ece9d7b9db3d082cce92ba925c8e7ab8
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
import request from '@/utils/request'
 
// 查询客户列表
export function selectCustomPageList(query) {
  return request({
    url: '/system/custom/selectCustomPageList',
    method: 'get',
    params: query
  })
}
// 新增客户
export function addCustom(query) {
  return request({
    url: '/system/custom/addCustom',
    method: 'post',
    data: query
  })
}
// 修改客户
export function upCustom(query) {
  return request({
    url: '/system/custom/upCustom',
    method: 'post',
    data: query
  })
}
// 删除客户
export function delCustomById(query) {
  return request({
    url: '/system/custom/delCustomById',
    method: 'post',
    params: query
  })
}