diff --git a/app/api/controller/Maintainentry.php b/app/api/controller/Maintainentry.php index fe9f977..3a39dbb 100644 --- a/app/api/controller/Maintainentry.php +++ b/app/api/controller/Maintainentry.php @@ -2058,7 +2058,7 @@ class Maintainentry extends BaseController if (empty($type)) { $this->apiError('缺少参数'); } else { - $ids = Db::table('cms_planting_type')->where('pid',$type)->column('id') ; + $ids = Db::table('cms_planting_type')->where('pid',$type)->column('id') ??[]; $where['user_id'] = $this->request->uid; $page = get_params('page')??1; $limit = get_params('limit')??10; @@ -2068,6 +2068,12 @@ class Maintainentry extends BaseController ->withAttr('createtime', function ($val,$data) { return date('Y-m-d H:i:s',$data['createtime']); }) + ->withAttr('name', function ($val,$data) { + return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('name'); + }) + ->withAttr('image', function ($val,$data) { + return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('image'); + }) ->select()->toArray(); if ($result) { $this->apiSuccess('获取成功', $result);