Files
BESCMS/template/pc/default/member/apply_level.html
T

88 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{template "mheader.html"}
<div class="row">
<div class="col-md-12">
<div class="portlet light ">
<div class="portlet-title">
<div class="caption">
<span class="caption-subject"> {if $is_xufei}续费{else}升级{/if}用户组级别</span>
</div>
</div>
<div class="portlet-body form fc-form">
<form action="" class="form-horizontal" method="post" name="myform" id="myform">
{$form}
<div class="form-group">
<label class="col-md-2 control-label">用户组</label>
<div class="col-md-9">
<p class="form-control-static"> {$group.name} </p>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label"> 用户组级别 </label>
<div class="col-md-9" style="padding-top: 10px">
<div class="mt-radio-list">
{loop $level $t}
<label class="mt-radio mt-radio-line">
<input type="radio" name="lid" value="{$t.id}" >
{$t.name}
{if $group.setting.timetype}{$t.setting.days} {dr_member_group_dtype($t.setting.dtype)}{/if}
{if $group['unit']}
{intval($t.value)}{SITE_SCORE}
{if $myvalue}
(原{$t.value2})
{/if}
{else}
¥{$t.value}元
{if $myvalue}
(原¥{$t.value2}元)
{/if}
{/if}
<span></span>
</label>
{/loop}
</div>
</div>
</div>
{if $group['unit']}
<div class="form-group">
<label class="col-md-2 control-label"> 付款方式 </label>
<div class="col-md-9">
账户可用余额:{$member.score}{SITE_SCORE}
</div>
</div>
{else}
<div class="form-group">
<label class="col-md-2 control-label"> 付款方式 </label>
<div class="col-md-9">
<div class="btn-group" data-toggle="buttons">
{loop $pay_type $name $t}
<label onclick="dr_select_paytype('{$name}')" class="btn btn-lg btn-default {if $name == 'finecms'}active{/if}"> <input type="radio" class="toggle"> {$t['icon']} {$t['name']} {if $name == 'finecms'}{$member.money}元){/if}</label>
{/loop}
<input type="hidden" name="pay_type" value="finecms" id="dr_payselect">
</div>
</div>
</div>
{/if}
<div class="form-actions fc-form-actions">
<label class="col-md-2 control-label"> </label>
<div class="col-md-9 fc-form-submit">
<button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000')" class="btn blue"> 确认{if $is_xufei}续费{else}升级{/if} </button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
{template "mfooter.html"}