接口修改2

This commit is contained in:
彭桃 2023-03-29 16:14:06 +08:00
parent ebcfa79114
commit 47812418b8

View File

@ -2009,7 +2009,7 @@ class Maintainentry extends BaseController
$where['user_id'] = $this->request->uid;
$result = Db::table('cms_planting_information')->where($where)
->withAttr('createtime', function ($val,$data) {
return date('Y-m-d H:i:s',$data['createtime']);
return date('Y-m-d',$data['createtime']);
})
->find();
if ($result) {
@ -2066,7 +2066,7 @@ class Maintainentry extends BaseController
$result = Db::table('cms_planting_information')->where($where)->whereIn('type_id',$ids)->page($page,$limit)->order($order. ' desc')
->withAttr('createtime', function ($val,$data) {
return date('Y-m-d H:i:s',$data['createtime']);
return date('Y-m-d',$data['createtime']);
})
->withAttr('name', function ($val,$data) {
return Db::table('cms_planting_type')->where('id',$data['type_id'])->value('name');