1.提交缺失的东西

This commit is contained in:
2025-05-15 16:10:54 +08:00
parent 388d375c02
commit 69366e4c96

View File

@ -28,8 +28,8 @@ class GoodsController extends BaseApiController
*/
public function getGoodsList(){
$get = $this->request->get();
$goods_list = GoodsLogic::getGoodsList($this->user_id, $get, $this->page_no, $this->page_size);
$this->success('获取成功',$goods_list);
$goods_list = GoodsLogic::getGoodsList($this->userId, $get, $this->page_no, $this->page_size);
return $this->success('获取成功',$goods_list);
}