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

interface

... ... @@ -38,4 +38,17 @@ class AdminFaultController extends AdminBaseController{
$this->assign('data',$data);
return $this->fetch();
}
//结束计费
public function bill_error(){
}
}
\ No newline at end of file
... ...
... ... @@ -44,6 +44,7 @@
<th>所在医院</th>
<th>故障类型</th>
<th>故障描述</th>
<th>故障状态</th>
<th width="100">操作</th>
</tr>
</thead>
... ... @@ -60,15 +61,20 @@
<td>
<switch name="$vo.fault_type">
<case value="1">计费</case>
<case value="2">车轮</case>
<case value="3">床体</case>
<case value="4">床垫</case>
<case value="5">车锁</case>
<case value="6">其他</case>
<case value="2">床体</case>
<case value="3">车锁</case>
<case value="4">其他</case>
</switch>
</td>
<td>{$vo.fault_describe}</td>
<td>
<switch name="$vo.state">
<case value="1">未处理</case>
<case value="2">处理中</case>
<case value="3">已处理</case>
</switch>
</td>
<td>
<a href="{:url('AdminArticle/edit',array('id'=>$vo['id']))}">查看图片</a>
</td>
... ...