Commit 9e5a6bf7 authored by hujun's avatar hujun

page

parent 0c70e34f
...@@ -31,8 +31,8 @@ class Coupon extends Basic ...@@ -31,8 +31,8 @@ class Coupon extends Basic
return view('cashBackList'); return view('cashBackList');
} }
$page_no = empty($this->params['page_no']) ? 1 : $this->params['page_no']; $page_no = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
$page_size = empty($this->params['page_size']) ? 15 : $this->params['page_size']; $page_size = empty($this->params['pageSize']) ? 15 : $this->params['pageSize'];
$where = $this->binWhere($this->params); $where = $this->binWhere($this->params);
$field = 'id,user_id,activity_id,status,create_time'; $field = 'id,user_id,activity_id,status,create_time';
$list = $this->m_coupon->getList($page_no, $page_size, 'id desc', $field, $where); $list = $this->m_coupon->getList($page_no, $page_size, 'id desc', $field, $where);
......
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