作者 sgj
1 个管道 的构建 通过 耗费 6 秒

add the user of the lock

@@ -60,6 +60,7 @@ @@ -60,6 +60,7 @@
60 <th>设备状态(电量/使用/设备)</th> 60 <th>设备状态(电量/使用/设备)</th>
61 <th>导入时间</th> 61 <th>导入时间</th>
62 <th>二维码</th> 62 <th>二维码</th>
  63 + <th>占用人</th>
63 <th>备注</th> 64 <th>备注</th>
64 <th width="90">操作</th> 65 <th width="90">操作</th>
65 </tr> 66 </tr>
@@ -104,6 +105,11 @@ @@ -104,6 +105,11 @@
104 <img src="{:cmf_get_image_preview_url($vo.qr_code)}"> 105 <img src="{:cmf_get_image_preview_url($vo.qr_code)}">
105 </td> 106 </td>
106 <td> 107 <td>
  108 + <if condition="$vo.use eq 1">
  109 + {:get_user_serial($vo.name)}
  110 + </if>
  111 + </td>
  112 + <td>
107 {$vo.note} 113 {$vo.note}
108 </td> 114 </td>
109 <td> 115 <td>
@@ -1823,3 +1823,10 @@ function getAccessToken(){ @@ -1823,3 +1823,10 @@ function getAccessToken(){
1823 return $jssdk->getAccessToken(); 1823 return $jssdk->getAccessToken();
1824 } 1824 }
1825 1825
  1826 +function get_user_serial($serial){
  1827 + $map['eq_name']=$serial;
  1828 + $map['state']=['neq',3];
  1829 + $user_id=db('order')->where($map)->value('users_id');
  1830 + $phone=\db('users')->where('id',$user_id)->value('phone');
  1831 + return $phone;
  1832 +}