|
|
|
@ -756,7 +756,7 @@ |
|
|
|
@refreshPageData="refreshPageData"></ComMalformedMaterial> |
|
|
|
|
|
|
|
<!-- 过程检验组件 --> |
|
|
|
<ComProcessInspection :visible.sync="showProcessInspectionFlag" :orderNo="scheduleData.orderNo" :resourceId="scheduleData.resourceId" :seqNo="scheduleData.seqNo" :site="scheduleData.site" :buNo="scheduleData.buNo" :rollNo="scheduleData.rollNo"></ComProcessInspection> |
|
|
|
<ComProcessInspection :visible.sync="showProcessInspectionFlag" :orderNo="scheduleData.orderNo" :resourceId="scheduleData.resourceId" :seqNo="scheduleData.seqNo" :site="scheduleData.site" :buNo="scheduleData.buNo" :rollNo="scheduleData.rollNo" @closed="refreshPageData"></ComProcessInspection> |
|
|
|
|
|
|
|
<!-- MRB异常单登记组件 --> |
|
|
|
<ComMrbRegister ref="comMrbRegister" :visible.sync="showMrbRegisterFlag" @confirmed="onMrbConfirmed"></ComMrbRegister> |
|
|
|
@ -4867,12 +4867,12 @@ export default { |
|
|
|
//执行删除卷的操作 |
|
|
|
deleteSfdcRolls(sfdcRoll).then(({data}) => { |
|
|
|
//判断是否成功 |
|
|
|
if (data.code == 500) { |
|
|
|
this.$message.error(data.msg); |
|
|
|
} else { |
|
|
|
this.$message.success(data.resultMap.resultMsg); |
|
|
|
if (data.code == 200) { |
|
|
|
this.$message.success(data.msg); |
|
|
|
//刷新报工的页面 |
|
|
|
this.refreshPageData(); |
|
|
|
} else { |
|
|
|
this.$message.error(data.msg); |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
|