feat/task1-c-wallet
devil_gong 2018-11-26 17:15:42 +08:00
parent 060cc538ad
commit 97d6b633d6
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ class OrderController extends CommonController
public function Index()
{
// 参数
$params = $this->data_post['page'];
$params = $this->data_post;
$params['user'] = $this->user;
// 分页
@ -92,9 +92,9 @@ class OrderController extends CommonController
public function Detail()
{
// 参数
$params = $this->data_post['page'];
$params = $this->data_post;
$params['user'] = $this->user;
// 条件
$where = OrderService::UserOrderListWhere($params);