diff --git a/app/api/controller/PayController.php b/app/api/controller/PayController.php index 5bc88bf6c..c0e6f0149 100755 --- a/app/api/controller/PayController.php +++ b/app/api/controller/PayController.php @@ -66,7 +66,7 @@ class PayController extends BaseApiController return $this->fail(PaymentLogic::getError(), $params); } // 请求支付系统 - $companyInfo = Company::where(['company_id' => $this->userInfo['company_id']])->find(); + $companyInfo = Company::where(['id' => $this->userInfo['company_id']])->find(); $requestData = [ 'street' => $companyInfo['street'], 'order_from' => 12,