| | |
| | | <span>{{ parseTime(scope.row.arrivalDate, '{y}-{m}-{d}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="批次说明" align="center" prop="illustrate" /> |
| | | <el-table-column label="批次说明" align="center" prop="illustrate" show-overflow-tooltip /> |
| | | <el-table-column label="操作" fixed="right" width="120" align="center" class-name="small-padding fixed-width"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | |
| | | /** 删除按钮操作 */ |
| | | handleDelete(row) { |
| | | const ids = row.id || this.ids; |
| | | this.$modal.confirm('是否确认删除?').then(() => { |
| | | this.$modal.confirm(`是否确认删除生产批次为"${row.batch}"的生产批次?`).then(() => { |
| | | this.loading = true; |
| | | return delBatch(ids); |
| | | }).then(() => { |