From c08249ce5a6b8d1f6d943079a52af8e966dd7708 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 13 Jan 2024 18:14:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/store/merchant/MerchantIntention.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }