info.php 1.59 KB
<?php

use yii\helpers\Url;
$this->title = '维修厂详情';
$this->params['breadcrumbs'][] = '维修厂管理';
$this->params['breadcrumbs'][] = ['label' => '维修厂列表', 'url' => ['/maintainer/user/index']];
$this->params['breadcrumbs'][] =  $this->title;


?>
<style>
    .imgs-class{margin:0;padding:0;list-style: none}
    .imgs-class li{margin:0;padding:0;width:150px;list-style: none;float:left;padding-right:1rem;box-sizing: border-box}
    .imgs-class li img{width:100%;}
    textarea {border-radius: 4px;}

</style>
<div class="panel panel-default">
    <div id="warning"></div>

    <input type="hidden" value="<?=$user['uuid'] ?>" name="uuid" id="uuid" >

    <div class="panel-body">
        <table class="table table-bordered">
            <tr>
                <td colspan="4" class="bg-info">维修厂信息</td>
            </tr>
            <tr>
                <th width="100">维修厂ID</th>
                <td width="350"><?=$user['id']; ?></td>

                <th width="100">维修厂名称</th>
                <td ><?=$user['name']; ?></td>
            </tr>
            <tr>
                <th>维修厂电话</th>
                <td><?=$user['mobile']; ?></td>

                <th>注册时间</th>
                <td><?=date('Y-m-d H:i:s', $user['created_at']); ?></td>
            </tr>

            <tr>
                <th>营业执照</th>
                <td><a target="_blank" href="<?=$user['licensePic']; ?>"><img width="150" src='<?=$user["licensePicMin"]?>' /></a></td>

                <th></th>
                <td></td>
            </tr>
        </table>
    </div>


</div>