| | |
| | | <el-table-column label="操作" width="65" align="center"> |
| | | <template slot-scope="scope"> |
| | | {{scope.index}} |
| | | <el-button type="text" size="small" @click="sampleList.splice(scope.$index, 1)" :disabled="active!=1">删除</el-button> |
| | | <el-button type="text" size="small" @click="delSampleAndProduct" :disabled="active!=1">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | this.sampleList = obj.sampleList; |
| | | }) |
| | | }, |
| | | delSampleAndProduct(){ |
| | | this.sampleList.splice(scope.$index, 1) |
| | | this.productList = [] |
| | | } |
| | | } |
| | | } |
| | | </script> |