/**
  * 编辑排序处理.
  * 
  * @access public
  * @return void
  */
 public function editOrderListAction()
 {
     $ids = I('post.ids', []);
     $orderList = I('post.orderList', []);
     $result = ['status' => 1, 'msg' => '', 'data' => []];
     if (empty($ids) || empty($orderList)) {
         $result['status'] = 0;
         $result['msg'] = '参数错误';
         $this->ajaxReturn($result, 'json');
     }
     $model = new FieldModel();
     $res = $model->batchEditSortList($ids, $orderList);
     if ($res) {
         $result['status'] = 1;
         $result['msg'] = '修改成功';
     } else {
         $result['status'] = 0;
         $result['msg'] = '修改失败';
     }
     $this->ajaxReturn($result, 'json');
 }