作者 董瑞恩
1 个管道 的构建 通过 耗费 1 秒

order

@@ -38,7 +38,6 @@ class AdminOrderController extends AdminBaseController{ @@ -38,7 +38,6 @@ class AdminOrderController extends AdminBaseController{
38 $item['time']=($item['end_time']-$item['start_time'])/3600; 38 $item['time']=($item['end_time']-$item['start_time'])/3600;
39 return $item; 39 return $item;
40 }); 40 });
41 - dump($data->toArray());  
42 $this->assign('data',$data); 41 $this->assign('data',$data);
43 return $this->fetch(); 42 return $this->fetch();
44 } 43 }
@@ -7,21 +7,22 @@ @@ -7,21 +7,22 @@
7 <li><a href="{:url('AdminArticle/add')}">添加设备</a></li> 7 <li><a href="{:url('AdminArticle/add')}">添加设备</a></li>
8 </ul> 8 </ul>
9 <form class="well form-inline margin-top-20" method="post" action="{:url('AdminArticle/index')}"> 9 <form class="well form-inline margin-top-20" method="post" action="{:url('AdminArticle/index')}">
10 - 分类:  
11 - <select class="form-control" name="category" style="width: 140px;">  
12 - <option value='0'>全部</option>  
13 - {$category_tree|default=''}  
14 - </select> &nbsp;&nbsp;  
15 - 时间:  
16 - <input type="text" class="form-control js-bootstrap-datetime" name="start_time"  
17 - value="{$start_time|default=''}"  
18 - style="width: 140px;" autocomplete="off">-  
19 - <input type="text" class="form-control js-bootstrap-datetime" name="end_time"  
20 - value="{$end_time|default=''}"  
21 - style="width: 140px;" autocomplete="off"> &nbsp; &nbsp;  
22 - 关键字:  
23 - <input type="text" class="form-control" name="keyword" style="width: 200px;"  
24 - value="{$keyword|default=''}" placeholder="请输入关键字..."> 10 + 订单号:
  11 + <input type="text" class="form-control" name="order_no" style="width: 200px;"
  12 + value="{$order_no|default=''}" placeholder="请输入关键字...">
  13 + 所属医院:
  14 + <input type="text" class="form-control" name="hospital" style="width: 200px;"
  15 + value="{$hospital|default=''}" placeholder="请输入关键字...">
  16 + 备注:
  17 + <input type="text" class="form-control" name="note" style="width: 200px;"
  18 + value="{$note|default=''}" placeholder="请输入关键字...">
  19 + 设备编号:
  20 + <input type="text" class="form-control" name="start_number"
  21 + value="{$start_number|default=''}"
  22 + style="width: 80px;" autocomplete="off">-
  23 + <input type="text" class="form-control" name="end_number"
  24 + value="{$end_number|default=''}"
  25 + style="width: 80px;" autocomplete="off"> &nbsp; &nbsp;
25 <input type="submit" class="btn btn-primary" value="搜索"/> 26 <input type="submit" class="btn btn-primary" value="搜索"/>
26 <a class="btn btn-danger" href="{:url('AdminArticle/index')}">清空</a> 27 <a class="btn btn-danger" href="{:url('AdminArticle/index')}">清空</a>
27 </form> 28 </form>
@@ -35,7 +36,7 @@ @@ -35,7 +36,7 @@
35 <thead> 36 <thead>
36 <tr> 37 <tr>
37 <th width="50">ID</th> 38 <th width="50">ID</th>
38 - <th>设备MAC地址</th> 39 + <th>订单编号</th>
39 <th>设备锁编号</th> 40 <th>设备锁编号</th>
40 <th>所在医院</th> 41 <th>所在医院</th>
41 <th>开始使用时间</th> 42 <th>开始使用时间</th>
@@ -47,13 +48,13 @@ @@ -47,13 +48,13 @@
47 <foreach name="data" item="vo"> 48 <foreach name="data" item="vo">
48 <tr> 49 <tr>
49 <td><b>{$vo.id}</b></td> 50 <td><b>{$vo.id}</b></td>
50 - <td>{$vo.mac_address}</td> 51 + <td>{$vo.order_no}</td>
51 <td>{$vo.serial_number}</td> 52 <td>{$vo.serial_number}</td>
52 <td>{$vo.hospital}</td> 53 <td>{$vo.hospital}</td>
53 <td>{:date('Y-m-d H:i:s',$vo.start_time)}</td> 54 <td>{:date('Y-m-d H:i:s',$vo.start_time)}</td>
54 - <td>{:date('Y-m-d H:i:s',$vo.end_time)}{:time()}</td>  
55 - <td>{$vo.time}</td>  
56 - <td>{$vo.price}</td> 55 + <td>{:date('Y-m-d H:i:s',$vo.end_time)}</td>
  56 + <td>约{$vo.time}小时</td>
  57 + <td>{$vo.price}元</td>
57 </tr> 58 </tr>
58 </foreach> 59 </foreach>
59 </table> 60 </table>