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.
34 lines
1.1 KiB
34 lines
1.1 KiB
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)
|
|
|
|
export const customerInformationSearchForCheck= data => createAPI(`/plm/customerInformation/customerInformationSearchForCheck`,'post',data)
|
|
/**
|
|
* 客户组ID输入校验
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const checkCustomerGroup = data => createAPI(`/plm/customerInformation/checkCustomerGroup`,'post',data)
|