操作日志新增状态查询&热部署重启菜单丢失修复

This commit is contained in:
RuoYi
2019-04-03 17:39:41 +08:00
parent 1790fceda9
commit 9312fe6dfb
6 changed files with 13 additions and 18 deletions

View File

@ -6,7 +6,7 @@ ruoyi:
version: 3.3.0
# 版权年份
copyrightYear: 2019
# 文件上传
# 文件路径
profile: D:/profile/
# 获取ip地址开关
addressEnabled: true

View File

@ -22,6 +22,12 @@
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>操作状态:</label><select name="status" th:with="type=${@dict.getType('sys_common_status')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li class="select-time">
<label>操作时间: </label>
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
@ -118,7 +124,7 @@
if (value == 0) {
return '<span class="badge badge-primary">成功</span>';
} else if (value == 1) {
return '<span class="badge badge-danger">异常</span>';
return '<span class="badge badge-danger">失败</span>';
}
}
},