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');