reset.html
2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<include file="public/layout" />
<script src="__PUBLIC__/static/js/layer/laydate/laydate.js"></script>
<style type="text/css">
html, body {
overflow: visible;
}
</style>
<body style="background-color: #FFF; overflow: auto;">
<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" href="javascript:history.back();" title="会员权益初始化"><i class="fa fa-arrow-circle-o-left"></i></a>
<div class="subject">
<h3>会员权益初始化</h3>
<h5>此模块为首次使用,启用保存后不得修改</h5>
</div>
</div>
</div>
<!-- 操作说明 -->
<div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); width: 99%; height: 100%;">
<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>累计消费金额=对应会员消费应收金额(剔除代金券、积分平摊部分);</li>
</ul>
</div>
<form class="form-horizontal" method="post" id="handlepost" action="">
<div class="ncap-form-default">
<dl class="row">
<dt class="tit">
<label><em>*</em>初始化日期</label>
</dt>
<dd class="opt">
<input type="text" name="initdate" id="initdate" value="{$info.initdate}" onkeydown="strkeydown(event, this, 'submitBtn')" style="200px;"/>
</dd>
</dl>
<dl class="row">
<dt class="tit">
<label><em>*</em>会员等级有效期</label>
</dt>
<dd class="opt">
365天<font color="red">(系统默认)</font>
<span class="err"></span>
</dd>
</dl>
<dl class="row">
<dt class="tit">
<label><em>*</em>会员等级计算周期</label>
</dt>
<dd class="opt">
365天<font color="red">(系统默认)</font>
<span class="err"></span>
</dd>
</dl>
<input type="hidden" name="id" value="{$weapp.id}">
<div class="bot">
<a href="JavaScript:void(0);" onClick="formSubmit()" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
</div>
</div>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#initdate").layDate();
});
function formSubmit(){
$("#handlepost").submit();
}
</script>
</body>
</html>