提交的数据 to 请求数据

This commit is contained in:
thinkgem
2022-04-28 22:14:48 +08:00
parent 5c39029c62
commit c5eded94c0
3 changed files with 26 additions and 26 deletions

View File

@@ -165,7 +165,7 @@
未知操作=Unknown 未知操作=Unknown
保存=Save 保存=Save
日志详情=Log Detail 日志详情=Log Detail
提交的数据=Submitted data 请求数据=Submitted data
操作账号=Operation account 操作账号=Operation account
用户代理=User agent 用户代理=User agent

View File

@@ -51,7 +51,7 @@
<div class="col-xs-12"> <div class="col-xs-12">
<div class="form-group"> <div class="form-group">
<label class="control-label col-sm-2" title=""> <label class="control-label col-sm-2" title="">
<span class="required hide">*</span> ${text('提交的数据')}<i class="fa icon-question hide"></i></label> <span class="required hide">*</span> ${text('请求数据')}<i class="fa icon-question hide"></i></label>
<div class="col-sm-10"> <div class="col-sm-10">
<#form:textarea path="requestParams" rows="1" class="form-control autoHeight"/> <#form:textarea path="requestParams" rows="1" class="form-control autoHeight"/>
</div> </div>

View File

@@ -108,7 +108,7 @@ $('#dataGrid').dataGrid({
return '<a href="${ctx}/sys/log/form?id='+row.id+'" class="btnList" data-title="${text("日志详情")}">'+(val||row.id)+'</a>'; return '<a href="${ctx}/sys/log/form?id='+row.id+'" class="btnList" data-title="${text("日志详情")}">'+(val||row.id)+'</a>';
}}, }},
{header:'${text("请求地址")}', name:'requestUri', index:'a.request_uri', width:260, align:"left", formatter: function(val, obj, row, act){ {header:'${text("请求地址")}', name:'requestUri', index:'a.request_uri', width:260, align:"left", formatter: function(val, obj, row, act){
return '<span title="['+row.requestMethod+'] '+row.serverAddr+row.requestUri+'">'+ row.requestUri; return '<span title="['+row.requestMethod+'] '+row.serverAddr+row.requestUri+'">'+row.requestUri+'</span>';
}}, }},
{header:'${text("日志类型")}', name:'logType', index:'a.log_type', width:100, align:"center", formatter: function(val, obj, row, act){ {header:'${text("日志类型")}', name:'logType', index:'a.log_type', width:100, align:"center", formatter: function(val, obj, row, act){
return js.getDictLabel(${@DictUtils.getDictListJson('sys_log_type')}, val, '未知', true); return js.getDictLabel(${@DictUtils.getDictListJson('sys_log_type')}, val, '未知', true);