工艺问题修改

dev-scheduling
zhangdi 3 weeks ago
parent 16533d2ce6
commit 760d912738
  1. 2
      src/views/processManagement/bathRefine/addQuantity.vue
  2. 5
      src/views/processManagement/components/inPlantMaintenance.vue
  3. 18
      src/views/processManagement/taskDispatch.vue
  4. 2
      src/views/productionManagement/productionMonitoring/index.vue
  5. 9
      src/views/productionManagement/sinTerWorkOrder/index.vue

@ -128,7 +128,7 @@ export default {
}, },
{ {
label: '作业槽', label: '作业槽',
prop: 'batchNoName', prop: 'batchName',
search: false, search: false,
sortable: true, sortable: true,
overHidden: true, overHidden: true,

@ -42,6 +42,10 @@
下载</el-button 下载</el-button
> >
</template> </template>
<template #syncStatus="scope">
<span v-if="scope.row.syncStatus == 0">未同步</span>
<span v-if="scope.row.syncStatus == 1">已同步</span>
</template>
</avue-crud> </avue-crud>
<!-- 导入 --> <!-- 导入 -->
<basic-import <basic-import
@ -456,7 +460,6 @@ export default {
message: '操作成功!', message: '操作成功!',
}); });
// //
done();
this.onLoad(this.page, this.query); this.onLoad(this.page, this.query);
}); });
}, },

@ -22,9 +22,7 @@
<template #menu-right="{ size }"> </template> <template #menu-right="{ size }"> </template>
<template #menu="scope"> <template #menu="scope">
<el-button type="primary" link @click="setCrew(scope.row)" <el-button type="primary" link @click="setCrew(scope.row)">分派</el-button>
>分派</el-button
>
</template> </template>
<template #pdmCreateTime="scope"> <template #pdmCreateTime="scope">
{{ scope.row.pdmCreateTime ? scope.row.pdmCreateTime.substring(0, 10) : '' }} {{ scope.row.pdmCreateTime ? scope.row.pdmCreateTime.substring(0, 10) : '' }}
@ -107,6 +105,7 @@ export default {
searchSpan: 6, searchSpan: 6,
searchMenuPosition: 'right', searchMenuPosition: 'right',
align: 'center', align: 'center',
emptyText: '',
column: [ column: [
{ {
label: '零件号', label: '零件号',
@ -128,13 +127,6 @@ export default {
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
width: 150, width: 150,
rules: [
{
required: false,
message: '请选择镀种分类',
trigger: 'click',
},
],
}, },
{ {
label: '任务类型', label: '任务类型',
@ -172,7 +164,7 @@ export default {
overHidden: true, overHidden: true,
headerAlign: 'center', headerAlign: 'center',
align: 'center', align: 'center',
width: 150, width: 150,
}, },
{ {
label: '工艺路线详情', label: '工艺路线详情',
@ -246,13 +238,13 @@ export default {
// //
setCrewOpeSancel(isRefresh) { setCrewOpeSancel(isRefresh) {
this.setCrewOpen = false; this.setCrewOpen = false;
this.onLoad(this.page,this.query); this.onLoad(this.page, this.query);
}, },
// //
searchReset() { searchReset() {
this.query = {}; this.query = {};
this.parentId = 0; this.parentId = 0;
this.onLoad(this.page,this.query); this.onLoad(this.page, this.query);
}, },
// //
searchChange(params, done) { searchChange(params, done) {

@ -676,7 +676,7 @@ export default {
let ids = this.selectionList.map(item => item.woId); let ids = this.selectionList.map(item => item.woId);
window.open( window.open(
window.PROCESS_FLOW_CARD_PRINT + window.PROCESS_FLOW_CARD_PRINT +
'?woIds=' + '?woId=' +
ids.join(',') + ids.join(',') +
'&num=' + '&num=' +
this.printForm.quantity this.printForm.quantity

@ -572,9 +572,18 @@ export default {
} }
}, },
// //
//
submitPrint() { submitPrint() {
this.$refs.printForm.validate(valid => { this.$refs.printForm.validate(valid => {
if (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; this.printDialog = false;
} }
}); });

Loading…
Cancel
Save