bonuschargeadd.html
1.9 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
<include file="public@header"/>
<style type="text/css">
.pic-list li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('Charge/bonusCharge')}">所有充值</a></li>
<li class="active"><a href="{:url('Charge/commonChargeAdd')}">添加活动专享</a></li>
</ul>
<form action="{:url('Charge/bonusChargeAdd')}" method="post" class="form-horizontal margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<tr>
<th>充值面额<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="denomination"
required value="" placeholder="请输入充值面额"/>
</td>
</tr>
<tr>
<th>赠送金额<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="bonus"
required value="" placeholder="请输入赠送金额"/>
</td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="hidden" name="is_bonus" value="1">
<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button>
<a class="btn btn-default" href="{:url('Charge/bonusCharge')}">{:lang('BACK')}</a>
</div>
</div>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
</body>
</html>