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