From 3e942038d0cc8474cf39810f8e320b647bf7243b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E5=BA=86=E6=BA=90?= Date: Tue, 27 May 2025 16:57:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20[SBBJ-1119]=E4=BF=9D=E5=AD=98=E6=98=8E?= =?UTF-8?q?=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/overhaulOrder.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/overhaulOrder.ts b/src/api/overhaulOrder.ts index c051fa9..ff2856e 100644 --- a/src/api/overhaulOrder.ts +++ b/src/api/overhaulOrder.ts @@ -4,11 +4,11 @@ import http from './http' // 添加工单 export function overhaulOrderCreate(data,type) { if (type == 'DEVICE') { - return http.post('/eam/device-inspection-job-main/create',data) + return http.post('/eam/device-inspection-job-main/createPC',data) } else if (type == 'MOLD') { - return http.post('/eam/mold-inspection-job-main/create',data) + return http.post('/eam/mold-inspection-job-main/createPC',data) } else if (type == 'TECH') { - return http.post('/eam/tech-inspection-job-main/create',data) + return http.post('/eam/tech-inspection-job-main/createPC',data) } } // 编辑工单