customerContacts.js 1.65 KB
Newer Older
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 35 36
import request from '@/utils/request'

// 创建客户联系人
export function createCustomerContacts(data) {
  return request({
    url: '/ecw/customer-contacts/create',
    method: 'post',
    data: data
  })
}

// 更新客户联系人
export function updateCustomerContacts(data) {
  return request({
    url: '/ecw/customer-contacts/update',
    method: 'put',
    data: data
  })
}

// 删除客户联系人
export function deleteCustomerContacts(id) {
  return request({
    url: '/ecw/customer-contacts/delete?id=' + id,
    method: 'delete'
  })
}

// 获得客户联系人
export function getCustomerContacts(id) {
  return request({
    url: '/ecw/customer-contacts/get?id=' + id,
    method: 'get'
  })
}

Marcus's avatar
Marcus committed
37 38 39
// 获得客户联系人列表
export function getCustomerContactsList() {
  return request({
黄卓's avatar
黄卓 committed
40
    url: '/ecw/customer-contacts/list',
Marcus's avatar
Marcus committed
41 42 43 44
    method: 'get'
  })
}

45 46 47 48 49 50 51 52 53
// 获得客户联系人分页
export function getCustomerContactsPage(query) {
  return request({
    url: '/ecw/customer-contacts/page',
    method: 'get',
    params: query
  })
}

dragondean@qq.com's avatar
dragondean@qq.com committed
54 55 56 57 58 59 60 61
// 获得客户联系人下拉列表
export function getCustomerContactsSelect(query) {
  return request({
    url: '/ecw/customer-contacts/select',
    method: 'get',
    params: query
  })
}
62 63 64 65 66 67 68 69 70
// 导出客户联系人 Excel
export function exportCustomerContactsExcel(query) {
  return request({
    url: '/ecw/customer-contacts/export-excel',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}
黄卓's avatar
黄卓 committed
71 72 73 74 75 76 77 78 79

// 根据客户ID获得联系人列表
export function getCustomerContactsListByCustomer(query) {
  return request({
    url: '/ecw/customer-contacts/list-by-customer',
    method: 'get',
    params: query
  })
}