Merge pull request 'update' (#112) from zhangwei into master

Reviewed-on: http://git.excellentkk.cn/mkm/TaskSystem/pulls/112
This commit is contained in:
wei1990 2023-09-02 11:04:24 +08:00
commit 3b7d110f90

View File

@ -291,13 +291,8 @@ class VehicleController extends BaseApiController
//镇街公司收到的小组服务公司租赁申请列表
public function rentApplyList() {
//获取参数
$params = $this->request->get(['status']);
$search = [];
if(isset($params['status'])){
$search[] = ['status','=',$params['status']];
}
$data = VehicleContract::where('company_a_id',$this->userInfo['company_id'])->where($search)->select();
$data = VehicleContract::where('company_a_id',$this->userInfo['company_id'])->where('status','<>',4)->select();
return $this->success('请求成功',$data->toArray());
}