You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
<form class="form-horizontal form-validate" action="{php echo web_url('order/wlOrder/changecommission')}" method="post" enctype="multipart/form-data">
|
|
<input type='hidden' name='id' value='{$id}' />
|
|
<div class="modal-dialog" style='width: 920px;'>
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button aria-hidden="true" data-dismiss="modal" class="close" type="button">×</button>
|
|
<h3>修改佣金</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<style>
|
|
.table{margin-bottom: 0}
|
|
.table td, .table th{text-align: center;}
|
|
</style>
|
|
<table class="table table-hover table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<th>一级分销商</th>
|
|
<td>
|
|
{$order['onemember']}
|
|
</td>
|
|
<td colspan="2">
|
|
<input type="text" name="onemoney" value="{$leadmoney['one']}" class="form-control">
|
|
</td>
|
|
</tr>
|
|
{if $order['twoleadid']}
|
|
<tr>
|
|
<th>二级分销商</th>
|
|
<td>
|
|
{$order['twomember']}
|
|
</td>
|
|
<td colspan="2">
|
|
<input type="text" name="twomoney" value="{$leadmoney['two']}" class="form-control">
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-primary" type="submit">确定</button>
|
|
<input type="hidden" name="token" value="{$_W['token']}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|