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
796 B
27 lines
796 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* 客户信息列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerInformationSearch = data => createAPI(`/plm/customerInformation/customerInformationSearch`,'post',data)
|
|
/**
|
|
* 客户信息新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerInformationSave = data => createAPI(`/plm/customerInformation/customerInformationSave`,'post',data)
|
|
/**
|
|
* 客户信息编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerInformationEdit = data => createAPI(`/plm/customerInformation/customerInformationEdit`,'post',data)
|
|
/**
|
|
* 客户信息删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerInformationDelete = data => createAPI(`/plm/customerInformation/customerInformationDelete`,'post',data)
|
|
|