gaoluyang
4 天以前 00ef76a2e286e338fa3c648ce183e3533ce006ad
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
    })
}