90 lines
3.3 KiB
PHP
90 lines
3.3 KiB
PHP
<?php echo 'Discuz!应用中心开发者-简约设计';exit;?>
|
|
|
|
<!--{template common/header}-->
|
|
|
|
<!-- header start -->
|
|
<header class="header_xin">
|
|
<div class="hdc_xin cl" id="byg_header">
|
|
<div class="header_z cl">
|
|
<a href="javascript:;" class="shouye">
|
|
<img src="<!--{avatar($_G['uid'], 'middle', true)}-->" alt="头像"/>
|
|
<!--{if $_G[member][newpm] || $post_notice_new}-->
|
|
<img src="{$_G['style']['styleimgdir']}/new_pm.png" alt="提醒" class="new_pm"/>
|
|
<!--{/if}-->
|
|
</a>
|
|
<em>›</em>
|
|
<a href="home.php?mod=space&uid=$_G[uid]&do=profile&mycenter=1" title="个人中心">个人中心</a>
|
|
<em>›</em>
|
|
<a href="home.php?mod=spacecp&ac=credit&op=buy" title="充值">充值</a>
|
|
<em>›</em>
|
|
<span class="header_font">{lang payment_pay}</span>
|
|
</div>
|
|
<a href="javascript:history.back();" title="返回上一页" class="header_y">
|
|
<img src="{$_G['style']['styleimgdir']}/houtui.png" alt="返回"/></a>
|
|
</div>
|
|
</header>
|
|
<!--{hook/global_header_mobile}-->
|
|
<!-- header end -->
|
|
|
|
<form id="addfundsbuyform" name="addfundsbuyform" method="post" autocomplete="off" action="home.php?mod=spacecp&ac=payment&op=pay">
|
|
<style>
|
|
div b{ font-size: .14rem; font-weight: 700;}
|
|
</style>
|
|
<input type="hidden" name="order_id" value="{$order['id']}">
|
|
<input type="hidden" name="formhash" value="{FORMHASH}" />
|
|
<input type="hidden" name="paysubmit" value="true" />
|
|
<input type="hidden" name="handlekey" value="payment" />
|
|
<div class="m15 pl5"><b>{lang payment_pay_order_info}</b></div>
|
|
<div class="dzcell-group dzcell-group-inset">
|
|
<div class="dzcell-item">
|
|
<div class="dzcell-title">{lang payment_pay_order_id}</div>
|
|
<div class="dzcell-value">{$order['out_biz_no']}</div>
|
|
</div>
|
|
<div class="dzcell-item">
|
|
<div class="dzcell-title">{lang payment_pay_subject}</div>
|
|
<div class="dzcell-value">{$order['subject']}</div>
|
|
</div>
|
|
<!--{if $order['description']}-->
|
|
<div class="dzcell-item">
|
|
<div class="dzcell-title">{lang payment_pay_description}</div>
|
|
<div class="dzcell-value">{$order['description']}</div>
|
|
</div>
|
|
<!--{/if}-->
|
|
<div class="dzcell-item">
|
|
<div class="dzcell-title">{lang payment_pay_amount}</div>
|
|
<div class="dzcell-value">
|
|
<span style="color: #ff3548;">{lang payment_unit_yang}<em style="font-size: 20px;">{$order['amount']}</em></span>
|
|
<!--{if $order['total_amount']}-->
|
|
<span style="color: #ff3548; text-decoration: line-through; margin-left: 5px; font-size: 20px;">({$order['total_amount']})</span>
|
|
<!--{/if}-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="m15 pl5"><b>{lang payment_pay_type}</b></div>
|
|
<div class="dzcell-group dzcell-group-inset pay-channel-list">
|
|
<!--{loop $pay_channel_list $index $channel}-->
|
|
<div class="dzcell-item">
|
|
<div class="dzcell-title flex-box align-items-center">
|
|
<img src="$channel['logo']" />
|
|
</div>
|
|
<div class="dzcell-value flex-box align-items-center justify-content-end">
|
|
<input <!--{if !$index}-->checked<!--{/if}--> name="pay_channel" type="radio" value="{$channel['id']}">
|
|
</div>
|
|
</div>
|
|
<!--{/loop}-->
|
|
</div>
|
|
|
|
<div class="x35_post_btn">
|
|
<button id="pmsubmit_btn" class="pn btn_pn mgrey">{lang payment_pay_btn}</button>
|
|
</div>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
$('.pay-channel-list .dzcell-item').click(function() {
|
|
$(this).find('input').prop('checked', true);
|
|
});
|
|
})();
|
|
</script>
|
|
|
|
<!--{template common/footer}-->
|