From 9f07b29de3845b3290ee25afc134c82209aca9d4 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Wed, 27 Dec 2023 16:56:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=9F=8E=E8=8E=B7=E5=8F=96=E9=95=87?= =?UTF-8?q?=E5=86=9C=E7=A7=91=E5=85=AC=E5=8F=B8=E7=9A=84=E5=AF=B9=E5=85=AC?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/IndexController.php | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 302d8930d..0c69da7fb 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -38,7 +38,11 @@ use think\response\Json; */ class IndexController extends BaseApiController { - public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl', 'notifyProperty', 'notifyAuthentication', 'notifyVehicleContractUpdate','townCarRent','systemCarRent', 'selfCarRent', 'cancelRent', 'buyCar', 'vehicleCarList']; + public array $notNeedLogin = [ + 'index', 'config', 'policy', 'decorate', 'notifyUrl', + 'notifyProperty', 'notifyAuthentication', 'notifyVehicleContractUpdate', + 'townCarRent','systemCarRent', 'selfCarRent', 'cancelRent', 'buyCar', + 'vehicleCarList', 'getCompanyBankInfo']; /** * @notes 首页数据 @@ -820,4 +824,24 @@ class IndexController extends BaseApiController Db::name('company_authentication_fail_log')->insert(['company_id'=>$parmas['id'], 'log_type'=>3, 'fail_reason'=>$data['msg'], 'create_time'=>time()]); } } + + + public function getCompanyBankInfo() + { + $parmas = $this->request->param(); + $company = Db::query("select company_name,qualification from la_company where company_type=:company_type and FIND_IN_SET(:street,responsible_area)", ['company_type' => 41,'street'=>$parmas['street_code']], true)[0]; + + if (empty($company)) { + return $this->success('成功', ['corporate_account'=> '22170201040004168', 'corporate_bank'=> '中国农业银行股份有限公司泸州石洞支行', 'company_name' => '泸州里海农业科技有限公司', 'corporate_bank_address'=> '泸州市龙马潭区张家祠东路竹林馨居东侧约60米']); + } + + $company['qualification'] = json_decode($company['qualification'], true); + + if (!empty($company['qualification']['corporate_account']) && !empty($company['qualification']['corporate_bank'])) { + return $this->success('成功', ['corporate_account'=> $company['qualification']['corporate_account'], 'corporate_bank'=> $company['qualification']['corporate_bank'], 'company_name' => $company['company_name'], 'corporate_bank_address'=> $company['qualification']['corporate_bank_address'] ]); + } + + return $this->success('成功', ['corporate_account'=> '22170201040004168', 'corporate_bank'=> '中国农业银行股份有限公司泸州石洞支行', 'company_name' => '泸州里海农业科技有限公司', 'corporate_bank_address'=> '' ]); + + } }