aa
This commit is contained in:
parent
0834d5f14c
commit
bacb0044ea
@ -42,21 +42,20 @@ class Logistics extends BaseModel
|
||||
|
||||
public function getQhTimeAttr($value): string
|
||||
{
|
||||
return date('Y-m-d H:i:s',$value);
|
||||
}
|
||||
return !empty($value) ? date('Y-m-d H:i:s',$value) : $value;
|
||||
|
||||
public function getShTimeAttr($value): string
|
||||
{
|
||||
return date('Y-m-d H:i:s',$value);
|
||||
return !empty($value) ? date('Y-m-d H:i:s',$value) : $value;
|
||||
}
|
||||
|
||||
public function getPcTimeAttr($value): string
|
||||
{
|
||||
return date('Y-m-d H:i:s',$value);
|
||||
return !empty($value) ? date('Y-m-d H:i:s',$value) : $value;
|
||||
}
|
||||
|
||||
public function getQxTimeAttr($value): string
|
||||
{
|
||||
return date('Y-m-d H:i:s',$value);
|
||||
return !empty($value) ? date('Y-m-d H:i:s',$value) : $value;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user