diff --git a/src/api/customer/customerAddress.js b/src/api/customer/customerAddress.js new file mode 100644 index 0000000..2a14a15 --- /dev/null +++ b/src/api/customer/customerAddress.js @@ -0,0 +1,27 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +/** + * 客户联系地址列表查询 + * @param data + * @returns {*} + */ +export const customerAddressSearch = data => createAPI(`/plm/customerAddress/customerAddressSearch`,'post',data) +/** + * 客户联系地址新增 + * @param data + * @returns {*} + */ +export const customerAddressSave = data => createAPI(`/plm/customerAddress/customerAddressSave`,'post',data) +/** + * 客户联系地址编辑 + * @param data + * @returns {*} + */ +export const customerAddressEdit = data => createAPI(`/plm/customerAddress/customerAddressEdit`,'post',data) +/** + * 客户联系地址删除 + * @param data + * @returns {*} + */ +export const customerAddressDelete = data => createAPI(`/plm/customerAddress/customerAddressDelete`,'post',data) + diff --git a/src/api/customer/customerContact.js b/src/api/customer/customerContact.js new file mode 100644 index 0000000..cff2dcf --- /dev/null +++ b/src/api/customer/customerContact.js @@ -0,0 +1,27 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +/** + * 客户联系人列表查询 + * @param data + * @returns {*} + */ +export const customerContactSearch = data => createAPI(`/plm/customerContact/customerContactSearch`,'post',data) +/** + * 客户联系人新增 + * @param data + * @returns {*} + */ +export const customerContactSave = data => createAPI(`/plm/customerContact/customerContactSave`,'post',data) +/** + * 客户联系人编辑 + * @param data + * @returns {*} + */ +export const customerContactEdit = data => createAPI(`/plm/customerContact/customerContactEdit`,'post',data) +/** + * 客户联系人删除 + * @param data + * @returns {*} + */ +export const customerContactDelete = data => createAPI(`/plm/customerContact/customerContactDelete`,'post',data) + diff --git a/src/api/customer/customerInformation.js b/src/api/customer/customerInformation.js new file mode 100644 index 0000000..b9c9427 --- /dev/null +++ b/src/api/customer/customerInformation.js @@ -0,0 +1,27 @@ +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) + diff --git a/src/views/modules/customer/customerInformationManagement.vue b/src/views/modules/customer/customerInformationManagement.vue new file mode 100644 index 0000000..12507db --- /dev/null +++ b/src/views/modules/customer/customerInformationManagement.vue @@ -0,0 +1,1895 @@ + + + + + +