You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
|
|
</head>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-19 col-sm-19 col-xs-24">
|
|
<form method="post" action="search">
|
|
<div class="form-group">
|
|
<label for="orderId">订单号</label>
|
|
<input type="text" class="form-control" id="orderId" name="orderId" value="<?php echo $order_id; ?>">
|
|
</div>
|
|
<button type="submit" class="btn btn-default">查询</button>
|
|
</form>
|
|
<br>
|
|
<div class="panel panel-success">
|
|
<div class="panel-heading">网前订单情况</div>
|
|
<div class="panel-body">
|
|
<table class="table">
|
|
<thead>
|
|
<tr> <th style='width: 12%'>订单号</th> <th>订单信息</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><?php echo $online['COLI_Name']; ?></td>
|
|
<td><?php echo $online['COLI_OrderDetailText']; ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">HT 订单情况</div>
|
|
<div class="panel-body">
|
|
<table class="table">
|
|
<thead>
|
|
<tr> <th style='width: 12%'>订单号</th> <th>订单信息</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><?php echo $ht['COLI_Name']; ?></td>
|
|
<td><?php echo $ht['COLI_OrderDetailText']; ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-19 col-sm-19 col-xs-24">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</html>
|