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

interface

@@ -108,6 +108,8 @@ class AdminFaultController extends AdminBaseController{ @@ -108,6 +108,8 @@ class AdminFaultController extends AdminBaseController{
108 ]; 108 ];
109 try{ 109 try{
110 Db::startTrans(); 110 Db::startTrans();
  111 + Db::name('users')->where('id',$fault['users_id'])->update(['is_use'=>0]);
  112 + Db::name('equipment')->where('name',$fault['eq_name'])->update(['use'=>0]);
111 Db::name('order')->where('id',$order['id'])->update($data); 113 Db::name('order')->where('id',$order['id'])->update($data);
112 Db::name('fault')->where('id',$id)->update(['state'=>3]); 114 Db::name('fault')->where('id',$id)->update(['state'=>3]);
113 }catch (\Exception $exception){ 115 }catch (\Exception $exception){
@@ -59,7 +59,6 @@ @@ -59,7 +59,6 @@
59 <th>导入时间</th> 59 <th>导入时间</th>
60 <th>二维码</th> 60 <th>二维码</th>
61 <th>备注</th> 61 <th>备注</th>
62 - <th>设备状态</th>  
63 <th width="90">操作</th> 62 <th width="90">操作</th>
64 </tr> 63 </tr>
65 </thead> 64 </thead>