puzhibing
2024-02-07 387f61d55a8e20bc772b026cba4f8c34dfce5665
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>
@}