gaoluyang
2025-07-01 4a716a9b964f760ee414f48a6998f6728b3a5c8d
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
    })
}