This commit is contained in:
weiz 2024-02-20 09:08:15 +08:00
parent bb7582be81
commit 7a533b05a8

View File

@ -78,7 +78,7 @@ class MaterialPurchaseRequestController extends BaseAdminController
public function flows(): \think\response\Json public function flows(): \think\response\Json
{ {
$flow_type = FlowType::where('type',5)->where('name','cgsg')->findOrEmpty(); $flow_type = FlowType::where('type',5)->where('name','cgsq')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select(); $data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select();
return $this->success('请求成功',$data->toArray()); return $this->success('请求成功',$data->toArray());
} }