zck 8 månader sedan
förälder
incheckning
79c28c371b
1 ändrade filer med 40 tillägg och 1 borttagningar
  1. 40 1
      src/api/mes/job.js

+ 40 - 1
src/api/mes/job.js

@@ -815,4 +815,43 @@ export const TuihuoReport = (data) => {
     method: 'post',
     data
   })
-}
+}
+
+//查询新增基本信息
+export const queryOrderSize = (params) => {
+  return service({
+    url: '/mes_server/Facility/queryOrderSize',
+    method: 'get',
+    params
+  })
+}
+
+
+//新增次品
+export const ApiAddDefective = (data) => {
+  return service({
+    url: '/mes_server/Facility/ApiAddDefective',
+    method: 'post',
+    data
+  })
+}
+
+//质量管理左侧菜单栏查询
+export const ApiMouthlist = (params) => {
+  return service({
+    url: '/mes_server/Facility/ApiMouthlist',
+    method: 'get',
+    params
+  })
+}
+
+//查询次片、返工列表数据
+export const ApiSubPieceAndReworkList = (params) => {
+  return service({
+    url: '/mes_server/Facility/ApiSubPieceAndReworkList',
+    method: 'get',
+    params
+  })
+}
+
+