From 760d912738238dbe6f6559af6a55f7610219a7d1 Mon Sep 17 00:00:00 2001
From: zhangdi <1104545947@qq.com>
Date: Sat, 28 Mar 2026 09:24:10 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E8=89=BA=E9=97=AE=E9=A2=98=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../bathRefine/addQuantity.vue | 2 +-
.../components/inPlantMaintenance.vue | 5 ++++-
src/views/processManagement/taskDispatch.vue | 18 +++++-------------
.../productionMonitoring/index.vue | 2 +-
.../sinTerWorkOrder/index.vue | 9 +++++++++
5 files changed, 20 insertions(+), 16 deletions(-)
diff --git a/src/views/processManagement/bathRefine/addQuantity.vue b/src/views/processManagement/bathRefine/addQuantity.vue
index c66b382..0953b86 100644
--- a/src/views/processManagement/bathRefine/addQuantity.vue
+++ b/src/views/processManagement/bathRefine/addQuantity.vue
@@ -128,7 +128,7 @@ export default {
},
{
label: '作业槽',
- prop: 'batchNoName',
+ prop: 'batchName',
search: false,
sortable: true,
overHidden: true,
diff --git a/src/views/processManagement/components/inPlantMaintenance.vue b/src/views/processManagement/components/inPlantMaintenance.vue
index d9e11fe..1e88a9a 100644
--- a/src/views/processManagement/components/inPlantMaintenance.vue
+++ b/src/views/processManagement/components/inPlantMaintenance.vue
@@ -42,6 +42,10 @@
下载
+
+ 未同步
+ 已同步
+
- 分派
+ 分派
{{ scope.row.pdmCreateTime ? scope.row.pdmCreateTime.substring(0, 10) : '' }}
@@ -107,6 +105,7 @@ export default {
searchSpan: 6,
searchMenuPosition: 'right',
align: 'center',
+ emptyText: '',
column: [
{
label: '零件号',
@@ -128,13 +127,6 @@ export default {
headerAlign: 'center',
align: 'left',
width: 150,
- rules: [
- {
- required: false,
- message: '请选择镀种分类',
- trigger: 'click',
- },
- ],
},
{
label: '任务类型',
@@ -172,7 +164,7 @@ export default {
overHidden: true,
headerAlign: 'center',
align: 'center',
- width: 150,
+ width: 150,
},
{
label: '工艺路线详情',
@@ -246,13 +238,13 @@ export default {
// 设置班组人员弹框关闭
setCrewOpeSancel(isRefresh) {
this.setCrewOpen = false;
- this.onLoad(this.page,this.query);
+ this.onLoad(this.page, this.query);
},
// 重置
searchReset() {
this.query = {};
this.parentId = 0;
- this.onLoad(this.page,this.query);
+ this.onLoad(this.page, this.query);
},
// 搜索
searchChange(params, done) {
diff --git a/src/views/productionManagement/productionMonitoring/index.vue b/src/views/productionManagement/productionMonitoring/index.vue
index 60b7685..fa85268 100644
--- a/src/views/productionManagement/productionMonitoring/index.vue
+++ b/src/views/productionManagement/productionMonitoring/index.vue
@@ -676,7 +676,7 @@ export default {
let ids = this.selectionList.map(item => item.woId);
window.open(
window.PROCESS_FLOW_CARD_PRINT +
- '?woIds=' +
+ '?woId=' +
ids.join(',') +
'&num=' +
this.printForm.quantity
diff --git a/src/views/productionManagement/sinTerWorkOrder/index.vue b/src/views/productionManagement/sinTerWorkOrder/index.vue
index eec5ce1..6315c10 100644
--- a/src/views/productionManagement/sinTerWorkOrder/index.vue
+++ b/src/views/productionManagement/sinTerWorkOrder/index.vue
@@ -572,9 +572,18 @@ export default {
}
},
// 确定打印
+ // 确定打印
submitPrint() {
this.$refs.printForm.validate(valid => {
if (valid) {
+ let ids = this.selectionList.map(item => item.woId);
+ window.open(
+ window.PROCESS_FLOW_CARD_PRINT +
+ '?woId=' +
+ ids.join(',') +
+ '&num=' +
+ this.printForm.quantity
+ );
this.printDialog = false;
}
});