likang 2 anos atrás
pai
commit
e6504447c8
1 arquivos alterados com 8 adições e 2 exclusões
  1. 8 2
      catch/wind/controller/Wind.php

+ 8 - 2
catch/wind/controller/Wind.php

@@ -114,8 +114,14 @@ class Wind extends CatchController
      * 获取风场下拉菜单
      * @time 2022年04月28日 19:53
      */
-    public function getWindOptions(){
-        $list=$this->windModel->field('id as value,name as text')->select();
+    public function getWindOptions(Request $request){
+        $data = $request->get();
+        $where = [];
+        if($data["name"])
+        {
+            $where[] = ["name",'like','%'.$data['name'].'%'];
+        }
+        $list=$this->windModel->where($where)->field('id as value,name as text')->select();
         return CatchResponse::success($list);
     }
 }