songxingwei il y a 2 ans
Parent
commit
3a7a3137f2
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  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);
     }