|
|
|
@ -1716,6 +1716,35 @@ |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
saveData1 () { |
|
|
|
this.dataForm.engineerList = [] |
|
|
|
if (this.dataForm.engineerNo !== '') { |
|
|
|
this.dataForm.engineerList.push(this.dataForm.engineerNo) // Engineer |
|
|
|
} |
|
|
|
this.dataForm.technicianList = [] |
|
|
|
if (this.dataForm.technicianNo !== '') { |
|
|
|
this.dataForm.technicianList.push(this.dataForm.technicianNo) // Artwork |
|
|
|
} |
|
|
|
this.dataForm.csOperatorList = [] |
|
|
|
if (this.dataForm.csOperater !== '') { |
|
|
|
this.dataForm.csOperatorList.push(this.dataForm.csOperater) // CS |
|
|
|
} |
|
|
|
this.dataForm.planOperatorList = [] |
|
|
|
if (this.dataForm.planOperator !== '') { |
|
|
|
this.dataForm.planOperatorList.push(this.dataForm.planOperator) // Planner |
|
|
|
} |
|
|
|
updateBMBasicInformation(this.dataForm).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.$message.success( '操作成功') |
|
|
|
this.$clearHighLight() |
|
|
|
} else { |
|
|
|
this.$message.error(data.msg) |
|
|
|
} |
|
|
|
}).catch(() => { |
|
|
|
return |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
jumpPage (type) { |
|
|
|
/* if(type==="A"&& this.dataForm.ecnNo!==null&&this.dataForm.ecnNo!==''){ |
|
|
|
this.$refs.jumpA.blur(); |
|
|
|
|