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.
|
|
import { createAPI } from "@/utils/httpRequest.js";
/** * 客户项目信息列表查询 * @param data * @returns {*} */export const projectInformationSearch = data => createAPI(`/plm/projectInformation/projectInformationSearch`,'post',data)/** * 客户项目信息新增 * @param data * @returns {*} */export const projectInformationSave = data => createAPI(`/plm/projectInformation/projectInformationSave`,'post',data)/** * 客户项目信息编辑 * @param data * @returns {*} */export const projectInformationEdit = data => createAPI(`/plm/projectInformation/projectInformationEdit`,'post',data)/** * 客户项目信息删除 * @param data * @returns {*} */export const projectInformationDelete = data => createAPI(`/plm/projectInformation/projectInformationDelete`,'post',data)
|