Exemplo n.º 1
0
 /**
  * 批量删除或者调整顺序
  *
  */
 public function batchAction()
 {
     $ids = $this->getp('dels');
     if (empty($ids)) {
         $this->error('id 不能为空!');
     }
     // 实例化Model
     $log = new LogModel();
     $row = $log->delLogs($ids);
     if ($row) {
         $this->error('恭喜,删除成功', 'Message');
     } else {
         $this->error('删除失败');
     }
 }