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/changeexpress')}" method="post" enctype="multipart/form-data">
|
|
<input type='hidden' name='expressid' value='{$expressid}' />
|
|
<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">
|
|
<table class="table table-hover table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<th>收货人姓名</th>
|
|
<td colspan="2">
|
|
<input type="text" name="name" value="{$express['name']}" class="form-control">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>收货人电话</th>
|
|
<td colspan="2">
|
|
<input type="text" name="tel" value="{$express['tel']}" class="form-control">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>收货人地址</th>
|
|
<td colspan="2">
|
|
<input type="text" name="address" value="{$express['address']}" class="form-control">
|
|
</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>
|