Ver código fonte

魅力值小数点后四位

lizhen_gitee 1 ano atrás
pai
commit
3e84b4d914
1 arquivos alterados com 1 adições e 1 exclusões
  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;
     }