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.
39 lines
1.3 KiB
39 lines
1.3 KiB
<form class="form-horizontal form-validate" action="{php echo web_url('order/wlOrder/changetime')}" method="post" enctype="multipart/form-data">
|
|
<input type='hidden' name='id' value='{$id}' />
|
|
<input type='hidden' name='type' value='{$type}' />
|
|
<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>
|
|
{php echo tpl_form_field_date('estimatetime', date('Y-m-d H:i:s',$order['estimatetime']),true);}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>适用范围</th>
|
|
<td>
|
|
<label class="radio-inline"><input type="radio" name="classtype" value="0" checked="">仅本订单</label>
|
|
<label class="radio-inline"><input type="radio" name="classtype" value="1" >同商品所有订单</label>
|
|
</td>
|
|
</tr>
|
|
</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>
|