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.
72 lines
1.6 KiB
PHTML
72 lines
1.6 KiB
PHTML
6 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="zh-CN">
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="http://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">
|
||
|
<caption>已经入库成功</caption>
|
||
|
<thead>
|
||
|
<tr> <th>COLI_Name</th> <th>COLI_OrderDetailText</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">
|
||
|
<caption>可以在HT查询</caption>
|
||
|
<thead>
|
||
|
<tr> <th>COLI_Name</th> <th>COLI_OrderDetailText</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>
|