You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
760 B
27 lines
760 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* 客户联系人列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerContactSearch = data => createAPI(`/plm/customerContact/customerContactSearch`,'post',data)
|
|
/**
|
|
* 客户联系人新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerContactSave = data => createAPI(`/plm/customerContact/customerContactSave`,'post',data)
|
|
/**
|
|
* 客户联系人编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerContactEdit = data => createAPI(`/plm/customerContact/customerContactEdit`,'post',data)
|
|
/**
|
|
* 客户联系人删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerContactDelete = data => createAPI(`/plm/customerContact/customerContactDelete`,'post',data)
|
|
|