gaoluyang
2025-09-15 e3ae48fae22564fd2d66142a91639e3609240e88
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
// 客户信息
import request from '@/utils/request'
 
// 获取客户信息列表
export function getCustomerList(query) {
    return request({
        url: '/customer/list',
        method: 'get',
        params: query
    })
}
// 新增或编辑客户信息列表
export function addOrEditCustomer(query){
    return request({
        url: '/customer/addOrEditCustomer',
        method: 'post',
        data: query
    })
}
// 删除客户信息列表
export function delCustomer(query){
    return request({
        url: '/customer/delCustomer',
        method: 'delete',
        data: query
    })
}