From b1b1259b3fa40810bd26b18203e2ef06b568f1a5 Mon Sep 17 00:00:00 2001 From: yuejiayang <146344614+YangLei105@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:31:49 +0800 Subject: [PATCH] =?UTF-8?q?2023.11.17=20=E4=BB=A3=E7=90=86=E5=95=86?= =?UTF-8?q?=E7=9A=84=E5=A2=9E=E5=88=A0=E6=94=B9=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/part/agentInformation.js | 26 + src/views/modules/part/agentInformation.vue | 504 ++++++++++++++++++++ 2 files changed, 530 insertions(+) create mode 100644 src/api/part/agentInformation.js create mode 100644 src/views/modules/part/agentInformation.vue 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 @@ + + + + + +