diff --git a/service/app/admin/controller/IndexController.php b/service/app/admin/controller/IndexController.php index b73988b4..49e832e0 100644 --- a/service/app/admin/controller/IndexController.php +++ b/service/app/admin/controller/IndexController.php @@ -327,8 +327,10 @@ class IndexController extends base $list = $list->paginate($limit)->toArray(); foreach ($list['data'] as &$item) { - $item['refund_rate'] = bcmul(bcdiv((string)$item['refund'], (string)$item['all'], 4), '100', 2); - $item['asset_rate'] = bcmul(bcdiv((string)$item['asset'], (string)$item['all'], 4), '100', 2); +// $item['refund_rate'] = bcmul(bcdiv((string)$item['refund'], (string)$item['all'], 4), '100', 2); +// $item['asset_rate'] = bcmul(bcdiv((string)$item['asset'], (string)$item['all'], 4), '100', 2); + $item['refund_rate'] = ''; + $item['asset_rate'] = ''; } return $this->success($list);