Commit 1a99a4b9 by 朱继来

temp

parent e4edf262
......@@ -1074,7 +1074,8 @@ Class OrderController extends Controller
"k2" => $check['k2'],
"client_source" => $client_source,
];
echo '<pre>';
print_r(curlApi($url, $resData, "POST"));die;
$temp = json_decode(curlApi($url, $resData, "POST"), true);
return array('errcode'=>$temp['err_code'],'errmsg'=>$temp['err_msg']);
......
......@@ -953,10 +953,10 @@
$('input[name=order_pay_type]').click(function(){
var val = $(this).val();
if (val == 1) {
$('.show-advance-pay').hide();
} else {
if (val == 2) {
$('.show-advance-pay').show();
} else {
$('.show-advance-pay').hide();
}
})
......
......@@ -49,6 +49,7 @@
<td class="check-select">
<label><input class="order_all_pay" type="radio" name="order_pay_type" value="1">全额付款</label>
<label><input class="order_advance_pay" type="radio" name="order_pay_type" value="2">预付首款</label>
<label><input class="order_account_period" type="radio" name="order_pay_type" value="3">账期</label>
</td>
</tr>
<tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment