diff --git a/app/common.php b/app/common.php index a7d6507..6f788bd 100644 --- a/app/common.php +++ b/app/common.php @@ -1838,7 +1838,7 @@ if (!function_exists('fetchStockFromSina')) { 'changePercent' => $price > 0 ? (($changePercent >= 0 ? '+' : '') . number_format($changePercent, 2) . '%') : '--', 'high' => floatval($fields[4]) > 0 ? number_format(floatval($fields[4]), 2) : '--', 'low' => floatval($fields[5]) > 0 ? number_format(floatval($fields[5]), 2) : '--', - 'volume' => floatval($fields[8]) > 0 ? round(floatval($fields[8]) / 10000, 2) : '--', + 'volume' => floatval($fields[8]) > 0 ? round(floatval($fields[8]) / 1000000, 2) : '--', 'amount' => floatval($fields[9]) > 0 ? round(floatval($fields[9]) / 10000, 2) : '--', 'updateTime' => $fields[30] . ' ' . $fields[31] ];