diff --git a/src/api/part/agentInformation.js b/src/api/part/agentInformation.js new file mode 100644 index 0000000..7c9760d --- /dev/null +++ b/src/api/part/agentInformation.js @@ -0,0 +1,26 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +/** + * 制造商信息列表查询 + * @param data + * @returns {*} + */ +export const agentInformationSearch = data => createAPI(`/plm/agentInformation/agentInformationSearch`,'post',data) +/** + * 制造商信息新增 + * @param data + * @returns {*} + */ +export const agentInformationSave = data => createAPI(`/plm/agentInformation/agentInformationSave`,'post',data) +/** + * 制造商信息编辑 + * @param data + * @returns {*} + */ +export const agentInformationEdit = data => createAPI(`/plm/agentInformation/agentInformationEdit`,'post',data) +/** + * 制造商信息删除 + * @param data + * @returns {*} + */ +export const agentInformationDelete = data => createAPI(`/plm/agentInformation/agentInformationDelete`,'post',data) diff --git a/src/views/modules/part/agentInformation.vue b/src/views/modules/part/agentInformation.vue new file mode 100644 index 0000000..3f173e0 --- /dev/null +++ b/src/views/modules/part/agentInformation.vue @@ -0,0 +1,504 @@ + + + + + +