Browse Source

魅力值小数点后四位

lizhen_gitee 1 year ago
parent
commit
3e84b4d914
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/index/controller/Plantask.php

+ 1 - 1
application/index/controller/Plantask.php

@@ -214,7 +214,7 @@ class Plantask extends Controller
      * 数字转化
      */
     private function changeW($val) {
-        return $val > 10000 ? round($val/10000,2)."w":$val;
+        return $val > 10000 ? round($val/10000,4)."w":$val;
     }