puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@layout("/common/_container.html"){
<div class="ibox float-e-margins">
    <div class="ibox-content">
        <div class="form-horizontal">
            <input type="hidden" id="id" name="id" value="${item.id}">
            <div class="row">
                <div class="col-sm-6 b-r">
                    <#label id="name" name="姓名" value="${item.name}"/>
                    <#label id="phone" name="手机号" value="${item.phone}"/>
                    <#label id="sexStr" name="性别" value="${item.sexStr}"/>
                    <#label id="addTypeStr" name="司机来源" value="${item.addTypeStr}"/>
                    <#label id="driveCard" name="驾驶证号码" value="${item.driveCard}"/>
                    <div class="form-group">
                        <label class="col-sm-3 control-label">驾驶证照片:</label>
                        <div class="col-sm-9">
                            <div class="form-group">
                                <div class="col-sm-6">
                                    <div id="driveCardImgUrlPreId">
                                        <div>
                                            @if(isEmpty(item.driveCardImgUrl)){
                                            <img onclick="lookBigImg('${ctxPath}/static/img/NoPIC.png')" src="${ctxPath}/static/img/NoPIC.png" style="max-width:150px;">
                                            @}else{
                                            <img onclick="lookBigImg('${item.driveCardImgUrl}')" src="${item.driveCardImgUrl}" style="max-width:250px;">
                                            @}
                                        </div>
                                    </div>
                                </div>
                                <input type="hidden" id="driveCardImgUrl" name="driveCardImgUrl" value="${item.driveCardImgUrl}"/>
                            </div>
                        </div>
                    </div>
                    <#label id="idCard" name="身份证号码" value="${item.idCard}"/>
                    <#label id="driverAddress" name="居住地址" value="${item.driverAddress}"/>
                    <#label id="taxiAptitudeCard" name="出租车资格证号" value="${item.taxiAptitudeCard}"/>
                    <#label id="serverStr" name="服务模式" value="${item.serverStr}"/>
                    <div class="form-group">
                        <label class="col-sm-3 control-label">审核结果:</label>
                        <div class="col-sm-9">
                            <div class="radio radio-info radio-inline">
                                <input type="radio" id="authState1" value="1" name="authState" checked="" >
                                <label for="authState1"> 审核通过 </label>
                            </div>
                            <div class="radio radio-success radio-inline">
                                <input type="radio" id="authState4" value="4" name="authState" >
                                <label for="authState4"> 审核不通过 </label>
                            </div>
                        </div>
                    </div>
                </div>
 
                <div class="col-sm-6">
                    <div class="form-group">
                        <label class="col-sm-3 control-label">头像:</label>
                        <div class="col-sm-9">
                            <div class="form-group">
                                <div class="col-sm-6">
                                    <div id="headImgUrlPreId">
                                        <div>
                                            @if(isEmpty(item.headImgUrl)){
                                            <img onclick="lookBigImg('${ctxPath}/static/img/NoPIC.png')" src="${ctxPath}/static/img/NoPIC.png" style="max-width:150px;">
                                            @}else{
                                            <img onclick="lookBigImg('${item.headImgUrl}')" src="${item.headImgUrl}" style="max-width:250px;">
                                            @}
                                        </div>
                                    </div>
                                </div>
                                <input type="hidden" id="headImgUrl" name="headImgUrl" value="${item.headImgUrl}"/>
                            </div>
                        </div>
                    </div>
                    <#label id="companyName" name="所属机构" value="${item.companyName}"/>
                    <#label id="driverAge" name="驾龄" value="${item.driverAge}"/>
                </div>
            </div>
 
            <div class="row btn-group-m-t">
                <div class="col-sm-10 col-sm-offset-5">
                    <#button btnCss="info" name="确定" id="ensure" icon="fa-check" clickFun="TDriverInfoDlg.authOpt()"/>
                    <#button btnCss="danger" name="取消" id="cancel" icon="fa-eraser" clickFun="TDriverInfoDlg.close()"/>
                </div>
            </div>
        </div>
 
    </div>
</div>
<script src="${ctxPath}/static/modular/system/tDriver/tDriver_info.js"></script>
@}