From 688bdfa5e438263fc1754e1f534c09cf253d3f52 Mon Sep 17 00:00:00 2001 From: qiankanghui Date: Tue, 2 Jun 2026 13:10:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(npcIqc):=20=E6=B7=BB=E5=8A=A0NPC=20IQC?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建了NPC IQC API模块文件 - 实现了searchNpcIqc函数用于搜索操作 - 集成了createAPI工具函数进行HTTP请求封装 - 设置POST请求方式访问/npcIqc/search端点 --- src/api/npcIqc/npcIqc.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/api/npcIqc/npcIqc.js diff --git a/src/api/npcIqc/npcIqc.js b/src/api/npcIqc/npcIqc.js new file mode 100644 index 0000000..7c00327 --- /dev/null +++ b/src/api/npcIqc/npcIqc.js @@ -0,0 +1,4 @@ +import { createAPI } from '@/utils/httpRequest.js' + +export const searchNpcIqc = (data) => createAPI(`/npcIqc/search`, 'post', data) +