From fd4a06ae3edc068349c76953daf178eae0c52e35 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Tue, 23 Dec 2025 15:29:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E7=9C=8B=E6=9D=BF=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/productionSchedulingPlan/basic.js | 22 +++ .../schedulingDashboard/index.vue | 153 ++++++++++++++---- 2 files changed, 142 insertions(+), 33 deletions(-) diff --git a/src/api/productionSchedulingPlan/basic.js b/src/api/productionSchedulingPlan/basic.js index b579169..e073767 100644 --- a/src/api/productionSchedulingPlan/basic.js +++ b/src/api/productionSchedulingPlan/basic.js @@ -262,4 +262,26 @@ export const getWorkCenter = (params) => { method: 'get', params: params, }); +}; +// 查询班组 +export const getTeamSet = (params) => { + return request({ + url: '/blade-scheduling/teamSet/findList', + method: 'get', + params: params, + }); +}; +/** + * 文件流返回 + * @param url 接口地址 + * @param params 接口参数 + */ +export const exportBlob = (url, params) => { + return request({ + url: url, + // params: params, + data:params, + method: 'post', + responseType: 'blob', + }); }; \ No newline at end of file diff --git a/src/views/productionSchedulingPlan/schedulingDashboard/index.vue b/src/views/productionSchedulingPlan/schedulingDashboard/index.vue index bb0cd85..4d10244 100644 --- a/src/views/productionSchedulingPlan/schedulingDashboard/index.vue +++ b/src/views/productionSchedulingPlan/schedulingDashboard/index.vue @@ -11,12 +11,14 @@ filterable placeholder="请选择" size="small" + value-key="id" + @change="teamChange" > @@ -29,10 +31,12 @@ filterable placeholder="请选择" size="small" + value-key="id" + @change="equipChange" > @@ -41,19 +45,21 @@ - @@ -84,6 +90,9 @@
+
+ 导出 +
已完成 @@ -104,11 +113,12 @@
-
车间订单号
+
订单信息
+
-
{{ order.woCode }}
+ + +
订单号:{{ order.woCode }}
+
+ +
零件号:{{ order.partCode }}
+
+ +
批次号:{{ order.batchNo }}
+
+ +
数量:{{ order.makeQty }}
+
+ +
质量等级:{{ order.productIdent }}
+
+
+
@@ -331,7 +358,9 @@