This commit is contained in:
shilixia 2021-12-06 09:53:02 +08:00
parent 58d1ccc9bf
commit bf3bbb0c3a
2 changed files with 5 additions and 0 deletions

View File

@ -813,6 +813,7 @@ export default {
handlesubmit() { handlesubmit() {
submitOperation(this.id).then((res) => { submitOperation(this.id).then((res) => {
if (res.code >= 200) { if (res.code >= 200) {
this.$router.push({name: "operation" })
this.$message.success("操作提交成功!"); this.$message.success("操作提交成功!");
} }
}); });

View File

@ -65,6 +65,10 @@
highlight-current-row highlight-current-row
max-height="600" max-height="600"
> >
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column type="index" width="50" /> <el-table-column type="index" width="50" />
<el-table-column label="成品名称"> <el-table-column label="成品名称">
<template slot-scope="scope">{{ scope.row.material_.name }}</template> <template slot-scope="scope">{{ scope.row.material_.name }}</template>