diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index 457b8c85..6bb2ea39 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -389,8 +389,8 @@ class MerchantIntention extends BaseController public function lst() { [$page, $limit] = $this->getPage(); - $type = $this->request->get('type', 1); - $data = $this->repository->getList(['uid' => $this->userInfo->uid, 'type' => $type], $page, $limit); + // $type = $this->request->get('type', 1); + $data = $this->repository->getList(['uid' => $this->userInfo->uid], $page, $limit); return app('json')->success($data); }