Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
e975b414
Commit
e975b414
authored
Oct 29, 2019
by
季圣华
Browse files
优化日志模块,不往备注里面写入内容
parent
da303295
Changes
2
Hide whitespace changes
Inline
Side-by-side
erp_web/pages/manage/log.html
View file @
e975b414
...
...
@@ -113,7 +113,7 @@
pageList
:
initPageNum
,
columns
:
[[
{
title
:
'
操作模块
'
,
field
:
'
operation
'
,
width
:
120
},
{
title
:
'
操作详情
'
,
field
:
'
remark
'
,
width
:
350
},
{
title
:
'
操作详情
'
,
field
:
'
contentdetails
'
,
width
:
350
},
{
title
:
'
操作人员
'
,
field
:
'
username
'
,
width
:
100
,
align
:
"
center
"
},
{
title
:
'
操作状态
'
,
field
:
'
status
'
,
width
:
80
,
align
:
"
center
"
,
formatter
:
function
(
value
){
return
value
?
"
失败
"
:
"
成功
"
;
...
...
src/main/java/com/jsh/erp/service/log/LogService.java
View file @
e975b414
...
...
@@ -206,7 +206,6 @@ public class LogService {
Byte
status
=
0
;
log
.
setStatus
(
status
);
log
.
setContentdetails
(
type
+
getModule
(
apiName
));
log
.
setRemark
(
type
+
getModule
(
apiName
));
try
{
logMapper
.
insertSelective
(
log
);
}
catch
(
Exception
e
){
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment