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'=> '' ]); + + } }