| | |
| | | /> |
| | | |
| | | <!-- 操作日志详细 --> |
| | | <el-dialog title="操作日志详细" :visible.sync="open" width="700px" append-to-body> |
| | | <el-dialog title="操作日志详细" :close-on-click-modal="false" :visible.sync="open" width="700px" append-to-body> |
| | | <el-form ref="form" :model="form" label-width="100px" size="mini"> |
| | | <el-row> |
| | | <el-col :span="12"> |
| | |
| | | /** 删除按钮操作 */ |
| | | handleDelete(row) { |
| | | const operIds = row.operId || this.ids; |
| | | this.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项?').then(function() { |
| | | this.$modal.confirm('是否确认删除?').then(function() { |
| | | return delOperlog(operIds); |
| | | }).then(() => { |
| | | this.getList(); |