| 12345678910111213141516171819202122232425262728 |
- import request from '@/utils/request'
- // 查询客户列表
- export function listCustomer(query) {
- return request({
- url: '/qw/companyCustomer/list',
- method: 'get',
- params: query
- })
- }
- // 导出客户
- export function exportCustomer(query) {
- return request({
- url: '/qw/companyCustomer/export',
- method: 'get',
- params: query
- })
-
- }
- // 查询客户详情
- export function getCustomer(id) {
- return request({
- url: '/qw/companyCustomer/' + id,
- method: 'get'
- })
- }
|