|
|
|
|
@ -8,7 +8,6 @@ |
|
|
|
|
v-model="form" |
|
|
|
|
v-model:page="page" |
|
|
|
|
ref="crud" |
|
|
|
|
@row-del="rowDel" |
|
|
|
|
@search-change="searchChange" |
|
|
|
|
@search-reset="searchReset" |
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
@ -116,12 +115,12 @@ |
|
|
|
|
@closeDialog="closeDialog" |
|
|
|
|
></batches-dialog> |
|
|
|
|
<!-- 关闭弹窗 --> |
|
|
|
|
<closed-dialog |
|
|
|
|
<closedDialog |
|
|
|
|
v-if="showClose" |
|
|
|
|
:show-close="showClose" |
|
|
|
|
@closeDialog="closeDialog" |
|
|
|
|
:itemData="itemData" |
|
|
|
|
></closed-dialog> |
|
|
|
|
></closedDialog> |
|
|
|
|
<!-- 异常处理 --> |
|
|
|
|
<abnormalDialog |
|
|
|
|
v-if="showAbnormal" |
|
|
|
|
@ -150,7 +149,7 @@ |
|
|
|
|
import outsourceDialog from '../components/outsourceDialog.vue'; |
|
|
|
|
import productionDialog from '../components/productionDialog.vue'; |
|
|
|
|
import batchesDialog from '../components/batchesDialog.vue'; |
|
|
|
|
import closedDialog from '../components/abnormalDialog.vue'; |
|
|
|
|
import closedDialog from '../components/closedDialog.vue'; |
|
|
|
|
import abnormalDialog from '../components/abnormalDialog.vue'; |
|
|
|
|
import productionMonitoringDialog from '../components/productionMonitoringDialog.vue'; |
|
|
|
|
import workRate from '@/views/workRate/index.vue'; |
|
|
|
|
@ -656,6 +655,7 @@ export default { |
|
|
|
|
handleClose(row) { |
|
|
|
|
this.itemData = [row]; |
|
|
|
|
this.showClose = true; |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 转烧结 |
|
|
|
|
@ -666,8 +666,8 @@ export default { |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(() => { |
|
|
|
|
let query = { |
|
|
|
|
id: row.woId, |
|
|
|
|
yieldType: '12001', |
|
|
|
|
id: row.yoId, |
|
|
|
|
yieldType: '12002', |
|
|
|
|
}; |
|
|
|
|
turnType(query).then(res => { |
|
|
|
|
this.$message.success('转烧结成功'); |
|
|
|
|
|