Browse Source

2023-09-07 plm客户提交

master
杨奉源 3 years ago
parent
commit
7b8788b57b
  1. 27
      src/api/customer/projectInformation.js
  2. 1001
      src/views/modules/customer/customerInformationManagement.vue

27
src/api/customer/projectInformation.js

@ -0,0 +1,27 @@
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)

1001
src/views/modules/customer/customerInformationManagement.vue
File diff suppressed because it is too large
View File

Loading…
Cancel
Save