This commit is contained in:
mkm 2024-01-13 18:14:37 +08:00
parent 637f17726c
commit c08249ce5a

View File

@ -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);
}