付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
<div class="input-group input-group-sm" th:if="${application.userInfoManage == 'true' && session.LOGIN_KEY.role == 'admin'}"><select style="width:150px;margin-right:5px;margin-left:5px;" class="form-control" onchange="searchByAccount()" name="account" id="account">
    <option value="">请选择账号</option>
    <th:block th:each="item,iterStat : ${accountList}">
        <option  th:value="${item.account}"  th:text="${item.account}">Alabama</option>
    </th:block>
</select></div>