Compare commits

..

No commits in common. "c68b7eda81317ac12b750177017b15a34a63e700" and "29f5b2a7a976ebbb1c697202ba4f210bc6f1927b" have entirely different histories.

1 changed files with 3 additions and 11 deletions

View File

@ -26,11 +26,11 @@ class CropYieldResource extends JsonResource
'crop_id' => $this->crop_id,
'time_year' => $this->time_year,
'quarter' => $this->quarter,
'yield' => $this->formatNumber($this->yield).$this->whenLoaded('crop', function () {
'yield' => $this->yield.$this->whenLoaded('crop', function () {
return $this->crop?->unit ?? '';
}, ''),
'output' => $this->formatNumber($this->output).'元',
'cultivated' => $this->formatNumber($this->cultivated).'亩',
'output' => $this->output.'元',
'cultivated' => $this->cultivated.'亩',
'extends' => $this->extends,
'created_by' => $this->whenLoaded('createdBy', function () {
return $this->createdBy?->name;
@ -38,12 +38,4 @@ class CropYieldResource extends JsonResource
'created_at' => strtotime($this->created_at) ?? 0, //录入时间
];
}
private function formatNumber($number){
if($number > 10000){
return round($number/10000, 2).'万';
}else{
return $number;
}
}
}