Commit 5b26e067 authored by hujun's avatar hujun

1

parent 4f752090
...@@ -767,8 +767,8 @@ class Broker extends Basic ...@@ -767,8 +767,8 @@ class Broker extends Basic
$msg = ""; $msg = "";
$code = 200; $code = 200;
$data = []; $data = [];
$pageNo = empty($params['pageNo']) ? 1 : $params['pageNo']; $pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
$pageSize = empty($params['pageSize']) ? 15 : $params['pageSize']; $pageSize = empty($this->params['pageSize']) ? 15 : $this->params['pageSize'];
$where['status'] = 0; $where['status'] = 0;
if (isset($this->params['position']) && $this->params['position'] != -1) { if (isset($this->params['position']) && $this->params['position'] != -1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment