Merge branch 'master' of github.com:hainatravel/information-system into master

hotfix/paypal-note
candice 3 years ago
commit d9f424cd30

@ -32,8 +32,7 @@
</style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366"
crossorigin="anonymous"></script>
<ins id="adsense-head-ads" class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4231674166786366" data-ad-slot="1166484387" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
<div id="ezoic-pub-ad-placeholder-102"></div>
<?php } ?>
</section>
</div>

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

Loading…
Cancel
Save