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;
}
});