| | |
| | | <template slot="tableButton"> |
| | | <el-table-column label="操作" width="90" fixed="right"> |
| | | <template slot-scope="scope"> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">修改</el-button> |
| | | <el-button @click="delClick(scope.row.ID)" type="text" size="small">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | return { |
| | | ...item, |
| | | number: item.finenessRegister.number, |
| | | name: item.finenessRegister.name, |
| | | name: item.finenessRegister.workshopName, |
| | | workshopGroup: item.finenessRegister.workshopGroup, |
| | | finishDate: item.finenessRegister.finishDate, |
| | | spec:item.finenessRegister.spec, |
| | | } |
| | | }) |
| | | this.tableList.tableInfomation = list || [] |
| | | this.pagerOptions.totalCount = res.data.count |
| | | this.pagerOptions.totalCount = res.total |
| | | } else { |
| | | this.tableList.tableInfomation = [] |
| | | } |
| | |
| | | this.$router.push({ |
| | | path:"/productManage/silkRegisterForm/addPage", |
| | | query:{ |
| | | id:row.ID, |
| | | activeName:'second' |
| | | activeName:'second', |
| | | inspectID:row.ID, |
| | | id:row.finenessRegisterID, |
| | | number:row.number, |
| | | } |
| | | }); |
| | | }, |