|
|
@@ -23,7 +23,7 @@ export async function workorderPage(data) {
|
|
|
|
|
|
|
|
|
|
|
|
-// 工单列表 ()
|
|
|
+// 工单列表
|
|
|
export async function workorderPage2(data) {
|
|
|
const res = await request.post('/mes/workorder/taskReportPage', data);
|
|
|
if (res.data.code == 0) {
|
|
|
@@ -33,6 +33,18 @@ export async function workorderPage2(data) {
|
|
|
}
|
|
|
|
|
|
|
|
|
+// 工单列表
|
|
|
+
|
|
|
+export async function pickTaskReportPage(data) {
|
|
|
+ const res = await request.post('/mes/workorder/pickTaskReportPage', data);
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|