From fcfc4b3adb4e2872893d053cd0dc5c8629a08b76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E5=98=89?= <445241500@qq.com> Date: Sat, 25 May 2024 23:49:11 +0800 Subject: [PATCH] 1 --- app/common/model/Feedback.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/model/Feedback.php b/app/common/model/Feedback.php index 304d3752..6dec15de 100644 --- a/app/common/model/Feedback.php +++ b/app/common/model/Feedback.php @@ -60,7 +60,7 @@ class Feedback extends BaseModel */ public function getList(array $param = [], int $pageSize = 15): \think\Paginator { - $res = $this->with(['store.store_name'])->where($this->getFilter($param)) + $res = $this->with(['store'])->where($this->getFilter($param)) ->where('is_delete', '=', 0) ->order(['create_time' => 'desc', $this->getPk()]) ->paginate($pageSize);