|
@@ -75,9 +75,9 @@ xmlns:th="http://www.thymeleaf.org" lang="zh-CN">
|
|
|
|
|
|
<!-- 邮箱 -->
|
|
|
<div class="form-group">
|
|
|
- <label class="col-sm-2 control-label">邮箱 <i class="fa fa-question-circle fa_gray" aria-hidden="true" title="多个邮箱使用分号拼接,例子:abc@qq.com;xxx@qq.com"></i></label>
|
|
|
+ <label class="col-sm-2 control-label">邮箱 <i class="fa fa-question-circle fa_gray" aria-hidden="true" title="支持多个邮箱"></i></label>
|
|
|
<div class="col-sm-10">
|
|
|
- <input type="string" class="form-control" max="100" min="1" name="mail" th:value="${currentUser?.mail}"/>
|
|
|
+ <input type="string" class="form-control" max="100" min="1" name="mail" data-role="tagsinput" th:value="${currentUser?.mail}"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -93,6 +93,8 @@ xmlns:th="http://www.thymeleaf.org" lang="zh-CN">
|
|
|
<script type="text/javascript" th:inline="javascript">
|
|
|
const currentUserName = [[${currentUserName}]];
|
|
|
|
|
|
+ // 绑定多值输入框事件
|
|
|
+ initMultipleInputTags();
|
|
|
// 跳转用户管理
|
|
|
function backUserIndexPage() {
|
|
|
doLoader("/user?refresh=" + new Date().getTime());
|