songxingwei hace 2 años
padre
commit
3a7a3137f2
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      application/api/controller/Index.php

+ 5 - 1
application/api/controller/Index.php

@@ -65,9 +65,13 @@ class Index extends Api
                     ->whereBetween('date',[$start,$end])
                     ->sum('value') ? : 0;
             }
-
         }
         $list = arraySort($list,'value',SORT_DESC);
+        foreach ($list as &$v){
+            if ($v['name']=='留古镇'){
+                $v['value'] ='10';
+            }
+        }
         $this->success('成功',$list);
     }