puzhibing
2023-08-31 ef04ce57881e6a338b10d596c5eb76b2220598bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@/*
    选择查询条件标签的参数说明:
 
    name : 查询条件的名称
    id : 查询内容的input框id
@*/
<div class="input-group">
    <div class="input-group-btn">
        <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
            ${name}
        </button>
    </div>
    <select class="form-control" id="${id}">
        ${tagBody!}
    </select>
</div>