123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {include file="public/layout" /}
-
- <body class="bodystyle" style="overflow-y: scroll;">
- <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title"><a class="back_xin" href="{:url('Member/level_index')}" title="返回"><i class="iconfont e-fanhui"></i></a></a>
- <div class="subject">
- <h3>会员中心 - 编辑级别</h3>
- <h5></h5>
- </div>
- </div>
- </div>
- <!-- 操作说明 -->
- <div id="explanation" class="explanation">
- <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
- <h4 title="提示相关设置操作时应注意的要点">提示</h4>
- <span title="收起提示" id="explanationZoom" style="display: block;"></span>
- </div>
- <ul>
- <li>由于会员升级是以等级值由低向高升级的,因此增加组别时需注意此值的设置。</li>
- <li>如果你增加新的会员组的等级值低于10,将自动被视为普通的注册会员。</li>
- </ul>
- </div>
- <form class="form-horizontal" id="postForm" action="{:url('Member/level_edit')}" method="post">
- <div class="ncap-form-default">
- <dl class="row">
- <dt class="tit">
- <label for="level_name"><em>*</em>级别名称</label>
- </dt>
- <dd class="opt">
- <input type="text" name="level_name" value="{$info.level_name}" id="level_name" class="input-txt">
- <p class="notic"></p>
- </dd>
- </dl>
- <!-- <dl class="row">
- <dt class="tit">
- <label for="amount"><em>*</em>消费额度</label>
- </dt>
- <dd class="opt">
- <input type="text" name="amount" value="{$info.amount}" id="amount" class="input-txt">
- <p class="notic">设置会员等级所需要的消费额度,单位:元</p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label for="discount"><em>*</em>折扣率</label>
- </dt>
- <dd class="opt">
- <input type="text" name="discount" value="{$info.discount}" id="discount" class="input-txt">
- <p class="notic">折扣率单位为百分比,如输入90,表示该会员等级的会员可以以商品原价的90%购买</p>
- </dd>
- </dl> -->
- <dl class="row">
- <dt class="tit">
- <label for="discount"><em>*</em>会员等级值</label>
- </dt>
- <dd class="opt">
- <input type="text" name="level_value" id="level_value" value="{$info.level_value}" class="input-txt" onkeyup="this.value=this.value.replace(/[^0-9]/g,'');">
- <p class="notic">会员等级值,等级值从小往大增加,越高拥有的权限越多。</p>
- </dd>
- </dl>
- <div class="bot">
- <input type="hidden" name="level_id" value="{$info.level_id}">
- <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
- </div>
- </div>
- </form>
- </div>
-
- <script type="text/javascript">
- // 判断输入框是否为空
- function checkForm(){
- if($('input[name=level_name]').val() == ''){
- showErrorMsg('级别名称不能为空!');
- $('input[name=level_name]').focus();
- return false;
- }
- if($('input[name=level_value]').val() == ''){
- showErrorMsg('会员等级值不能为空!');
- $('input[name=level_value]').focus();
- return false;
- }
-
- // if($('input[name=amount]').val() == ''){
- // showErrorMsg('消费额度不能为空!');
- // $('input[name=amount]').focus();
- // return false;
- // }
-
- // if($('input[name=discount]').val() == ''){
- // showErrorMsg('折扣率不能为空!');
- // $('input[name=discount]').focus();
- // return false;
- // }
-
- layer_loading('正在处理');
- $('#postForm').submit();
- }
- </script>
-
- {include file="public/footer" /}
|