info.php
1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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>