This commit is contained in:
mkm 2023-08-08 22:59:28 +08:00
parent 27dd37ab0b
commit 2ce3ce34e1
3 changed files with 4 additions and 4 deletions

View File

@ -140,7 +140,7 @@ class CompanyController extends BaseAdminController
$params = $this->request->param(); $params = $this->request->param();
$result = ContractLogic::Draftingcontracts($params); $result = ContractLogic::Draftingcontracts($params);
if ($result == true) { if ($result == true) {
return $this->success('生成合同成功'); return $this->success('生成合同成功', [], 1, 1);
} }
return $this->fail(ContractLogic::getError()); return $this->fail(ContractLogic::getError());
} }

View File

@ -95,7 +95,7 @@ class UserController extends BaseAdminController
$params['check_status']=1; $params['check_status']=1;
$res=ContractLogic::Initiate_contract($params); $res=ContractLogic::Initiate_contract($params);
if (true === $res) { if (true === $res) {
return $this->success('发起成功,等待平台风控部上传合同'); return $this->success('发起成功,等待平台风控部上传合同', [], 1, 1);
} }
return $this->fail('发起失败'); return $this->fail('发起失败');
} }
@ -105,7 +105,7 @@ class UserController extends BaseAdminController
$params = Request::param(); $params = Request::param();
$result = ContractLogic::Draftingcontracts($params); $result = ContractLogic::Draftingcontracts($params);
if ($result === true) { if ($result === true) {
return $this->success('发送合同成功'); return $this->success('发送合同成功', [], 1, 1);
} else { } else {
return $this->fail(ContractLogic::getError()); return $this->fail(ContractLogic::getError());
} }

@ -1 +1 @@
Subproject commit 9acc82cd23d807280ddd29df2117e7890094d049 Subproject commit 1294ea49ff9ecc4532821f8798304816cbf8dd74