zhibing.pu
2024-09-11 e46b648749b8ba9cde852b7bc965ef602ca57da4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@/*
头像参数的说明:
name : 名称
id : 头像的id
@*/
<div class="form-group">
    <label class="col-sm-3 control-label head-scu-label">${name}</label>
    <div class="col-sm-9">
        <div id="${id}PreId">
            <div><img width="100px" height="100px"
                      @if(isEmpty(avatarImg)){
                      src="${ctxPath}/static/img/NoPIC.png"></div>
            @}else{
            src="${avatarImg}"></div>
        @}
    </div>
</div>
@if(isNotEmpty(underline) && underline == 'true'){
<div class="hr-line-dashed"></div>
@}