From 8a16785b019a7134807e9eabb5d79b47b13c9e5a Mon Sep 17 00:00:00 2001 From: Jimmy Liow <18777396951@163.com> Date: Thu, 29 Dec 2022 14:17:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=98=E6=AC=BE=E7=94=B3=E8=AF=B7=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E2=80=98=E5=BC=80=E6=88=B7=E8=A1=8C=E2=80=99=E2=80=98?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webht/third_party/dingtools/controllers/index.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webht/third_party/dingtools/controllers/index.php b/webht/third_party/dingtools/controllers/index.php index 34a0357f..9c2ffef8 100644 --- a/webht/third_party/dingtools/controllers/index.php +++ b/webht/third_party/dingtools/controllers/index.php @@ -32,6 +32,8 @@ class index extends CI_Controller { $message = $this->input->post('message'); $currency = $this->input->post('currency'); $channelType = $this->input->post('ChannelType'); + $bankName = $this->input->post('BankName'); + $bankAccount = $this->input->post('BankAccount'); if(empty($postunionid)){ exit('参数(postunionid)为空'); @@ -83,6 +85,10 @@ class index extends CI_Controller { $postData['form_component_values']['5']['value'] = $currency; $postData['form_component_values']['6']['name'] = '渠道类型'; $postData['form_component_values']['6']['value'] = $channelType; + $postData['form_component_values']['7']['name'] = '开户行'; + $postData['form_component_values']['7']['value'] = $bankName; + $postData['form_component_values']['8']['name'] = '账号'; + $postData['form_component_values']['8']['value'] = $bankAccount; //print_r(json_encode($postData));die(); $response = GetPost_http($url,json_encode($postData),'json');