|  |  | 
 |  |  |     /> | 
 |  |  |  | 
 |  |  |     <!-- 操作日志详细 --> | 
 |  |  |     <el-dialog title="操作日志详细" :visible.sync="open" width="700px" append-to-body> | 
 |  |  |     <Dialog title="操作日志详细" :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"> | 
 |  |  | 
 |  |  |       <div slot="footer" class="dialog-footer"> | 
 |  |  |         <el-button @click="open = false">关 闭</el-button> | 
 |  |  |       </div> | 
 |  |  |     </el-dialog> | 
 |  |  |     </Dialog> | 
 |  |  |   </div> | 
 |  |  | </template> | 
 |  |  |  | 
 |  |  | 
 |  |  |     /** 删除按钮操作 */ | 
 |  |  |     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(); |