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.
26 lines
855 B
26 lines
855 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* 分组信息列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerGroupInformationSearch = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationSearch`,'post',data)
|
|
/**
|
|
* 分组信息新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerGroupInformationSave = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationSave`,'post',data)
|
|
/**
|
|
* 分组信息编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerGroupInformationEdit = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationEdit`,'post',data)
|
|
/**
|
|
* 分组信息删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const customerGroupInformationDelete = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationDelete`,'post',data)
|