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

interface

@@ -38,4 +38,17 @@ class AdminFaultController extends AdminBaseController{ @@ -38,4 +38,17 @@ class AdminFaultController extends AdminBaseController{
38 $this->assign('data',$data); 38 $this->assign('data',$data);
39 return $this->fetch(); 39 return $this->fetch();
40 } 40 }
  41 +
  42 +
  43 +
  44 + //结束计费
  45 + public function bill_error(){
  46 +
  47 + }
  48 +
  49 +
  50 +
  51 +
  52 +
  53 +
41 } 54 }
@@ -44,6 +44,7 @@ @@ -44,6 +44,7 @@
44 <th>所在医院</th> 44 <th>所在医院</th>
45 <th>故障类型</th> 45 <th>故障类型</th>
46 <th>故障描述</th> 46 <th>故障描述</th>
  47 + <th>故障状态</th>
47 <th width="100">操作</th> 48 <th width="100">操作</th>
48 </tr> 49 </tr>
49 </thead> 50 </thead>
@@ -60,15 +61,20 @@ @@ -60,15 +61,20 @@
60 <td> 61 <td>
61 <switch name="$vo.fault_type"> 62 <switch name="$vo.fault_type">
62 <case value="1">计费</case> 63 <case value="1">计费</case>
63 - <case value="2">车轮</case>  
64 - <case value="3">床体</case>  
65 - <case value="4">床垫</case>  
66 - <case value="5">车锁</case>  
67 - <case value="6">其他</case> 64 + <case value="2">床体</case>
  65 + <case value="3">车锁</case>
  66 + <case value="4">其他</case>
68 </switch> 67 </switch>
69 </td> 68 </td>
70 <td>{$vo.fault_describe}</td> 69 <td>{$vo.fault_describe}</td>
71 <td> 70 <td>
  71 + <switch name="$vo.state">
  72 + <case value="1">未处理</case>
  73 + <case value="2">处理中</case>
  74 + <case value="3">已处理</case>
  75 + </switch>
  76 + </td>
  77 + <td>
72 <a href="{:url('AdminArticle/edit',array('id'=>$vo['id']))}">查看图片</a> 78 <a href="{:url('AdminArticle/edit',array('id'=>$vo['id']))}">查看图片</a>
73 </td> 79 </td>
74 80