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

add the user of the lock

... ... @@ -60,6 +60,7 @@
<th>设备状态(电量/使用/设备)</th>
<th>导入时间</th>
<th>二维码</th>
<th>占用人</th>
<th>备注</th>
<th width="90">操作</th>
</tr>
... ... @@ -104,6 +105,11 @@
<img src="{:cmf_get_image_preview_url($vo.qr_code)}">
</td>
<td>
<if condition="$vo.use eq 1">
{:get_user_serial($vo.name)}
</if>
</td>
<td>
{$vo.note}
</td>
<td>
... ...
... ... @@ -1823,3 +1823,10 @@ function getAccessToken(){
return $jssdk->getAccessToken();
}
function get_user_serial($serial){
$map['eq_name']=$serial;
$map['state']=['neq',3];
$user_id=db('order')->where($map)->value('users_id');
$phone=\db('users')->where('id',$user_id)->value('phone');
return $phone;
}
\ No newline at end of file
... ...