1.文件摘要配置列表修改 2.mail日志增加加发件人、收件人、邮件主题的查询条件
This commit is contained in:
@@ -41,6 +41,17 @@ public class MailLogController extends BaseController {
|
||||
params.put("pageNo", page.getPageNo());
|
||||
initLogSearchValue(log, params);
|
||||
|
||||
// 增加收/发件人、邮件主题查询
|
||||
if (StringUtils.isNotBlank(log.getMailTo())) {
|
||||
params.put("searchMailTo", log.getMailTo());
|
||||
}
|
||||
if (StringUtils.isNotBlank(log.getMailFrom())) {
|
||||
params.put("searchMailFrom", log.getMailFrom());
|
||||
}
|
||||
if (StringUtils.isNotBlank(log.getSubject())) {
|
||||
params.put("searchSubject", log.getSubject());
|
||||
}
|
||||
|
||||
List<FunctionServiceDict> serviceList = DictUtils.getFunctionServiceDictList(log.getFunctionId());
|
||||
model.addAttribute("serviceList", serviceList);
|
||||
|
||||
|
||||
@@ -418,12 +418,17 @@
|
||||
</td>
|
||||
<td>${indexCfg.rawLen }(B)</td>
|
||||
<td>
|
||||
<c:if test="${indexCfg.cfdsLevel > 1 && indexCfg.cfdsLevel <= 10}">
|
||||
<%-- <c:if test="${indexCfg.cfdsLevel > 1 && indexCfg.cfdsLevel <= 10}">
|
||||
${(indexCfg.cfdsLevel*10)}
|
||||
</c:if>
|
||||
<c:if test="${indexCfg.cfdsLevel eq 1 || indexCfg.cfdsLevel > 10}">
|
||||
${indexCfg.cfdsLevel }
|
||||
</c:if>
|
||||
</c:if> --%>
|
||||
<c:forEach items="${fns:getDictList('CONFIDENCE_INTERVAL')}" var="configdenceC">
|
||||
<c:if test="${configdenceC.itemCode eq indexCfg.cfdsLevel}">
|
||||
${configdenceC.itemValue}
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
</td>
|
||||
<td>
|
||||
<a href="${indexCfg.fileUrl }" target="_blank" data-original-title="${indexCfg.fileUrl }"
|
||||
|
||||
@@ -197,9 +197,36 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<div class="form-group">
|
||||
<label><spring:message code="mail_from"></spring:message>:</label>
|
||||
<input name="mailFrom" type="text" class="form-control" value="${log.mailFrom }"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<div class="form-group">
|
||||
<label><spring:message code="mail_to"></spring:message>:</label>
|
||||
<input name="mailTo" type="text" class="form-control" value="${log.mailTo }"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<div class="form-group">
|
||||
<label><spring:message code="subject"></spring:message>:</label>
|
||||
<input name="subject" type="text" class="form-control" value="${log.subject }"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<div class="form-group">
|
||||
<label><spring:message code="cfg_id"></spring:message>:</label>
|
||||
<input name="cfgId" type="text" class="form-control logCfgId number" value="${log.cfgId }"/>
|
||||
</div>
|
||||
</div>
|
||||
<%-- <div class="col-md-2">
|
||||
<label><spring:message code="cfg_id"></spring:message>:</label>
|
||||
<input name="cfgId" type="text" class="form-control logCfgId number" value="${log.cfgId }"/>
|
||||
</div>
|
||||
</div> --%>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /筛选搜索内容栏 结束-->
|
||||
|
||||
Reference in New Issue
Block a user