接口修改
This commit is contained in:
parent
843dcfd2f1
commit
ebcfa79114
@ -2058,7 +2058,7 @@ class Maintainentry extends BaseController
|
|||||||
if (empty($type)) {
|
if (empty($type)) {
|
||||||
$this->apiError('缺少参数');
|
$this->apiError('缺少参数');
|
||||||
} else {
|
} 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;
|
$where['user_id'] = $this->request->uid;
|
||||||
$page = get_params('page')??1;
|
$page = get_params('page')??1;
|
||||||
$limit = get_params('limit')??10;
|
$limit = get_params('limit')??10;
|
||||||
@ -2068,6 +2068,12 @@ class Maintainentry extends BaseController
|
|||||||
->withAttr('createtime', function ($val,$data) {
|
->withAttr('createtime', function ($val,$data) {
|
||||||
return date('Y-m-d H:i:s',$data['createtime']);
|
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();
|
->select()->toArray();
|
||||||
if ($result) {
|
if ($result) {
|
||||||
$this->apiSuccess('获取成功', $result);
|
$this->apiSuccess('获取成功', $result);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user