songxingwei 2 yıl önce
ebeveyn
işleme
3a7a3137f2
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  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);
     }