update
This commit is contained in:
parent
7f484728df
commit
81af75eb27
@ -177,8 +177,8 @@
|
||||
$column = [0 => '提交总数', 1 => '未提交数', 2 => '待回收数'];
|
||||
$data = [
|
||||
['name' => '提交总数', 'value' => $total],
|
||||
['name' => '未提交数', 'value' => $total - $ytj],
|
||||
['name' => '待回收数', 'value' => $total - $yhs],
|
||||
['name' => '未提交数', 'value' => ($total - $ytj) <= 0 ? 0 : $total - $ytj],
|
||||
['name' => '待回收数', 'value' => ($total - $yhs) <= 0 ? 0 : $total - $yhs],
|
||||
|
||||
];
|
||||
return $this->success('success', compact('column', 'data'));
|
||||
|
Loading…
x
Reference in New Issue
Block a user