Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jfV5portal
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
管理员
jfV5portal
Commits
6304688f
Commit
6304688f
authored
Sep 07, 2018
by
朱天成
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
39e76091
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
26 deletions
+13
-26
replyTab.js
WebContent/jwapp/pages/log/js/replyTab.js
+1
-0
replyTabDetail.jsp
WebContent/jwapp/pages/log/replyTabDetail.jsp
+0
-13
meetingTab.js
WebContent/jwapp/pages/meeting/js/meetingTab.js
+1
-1
voteTab.js
WebContent/jwapp/pages/vote/js/voteTab.js
+1
-6
actAction.java
src_jwapp/com/jw/app/log/action/actAction.java
+10
-6
No files found.
WebContent/jwapp/pages/log/js/replyTab.js
View file @
6304688f
...
...
@@ -151,6 +151,7 @@ function replySaveRow(){
var
v_result
=
logModule
.
logActAction
.
insertReply
(
items
);
if
(
v_result
.
NAME
==
'999'
){
$
(
'#logItemInputForm'
).
datagrid
(
'reload'
);
$
(
'#USER_REPLY_CONTENT'
).
textbox
(
"setValue"
,
""
)
}
}
}
...
...
WebContent/jwapp/pages/log/replyTabDetail.jsp
View file @
6304688f
<%@page contentType="text/html; charset=UTF-8"%>
<style type="text/css">
.datagrid-header {
position: absolute;
visibility: hidden;
}
#inputForm {
position: relative;
}
.log_reply_list{
position:absolute;
bottom:7%;}
.log_item_list div div{
float:left;
}
.log_item_info{
margin-left: 26px;
}
.log_item_index input{
width:120px;
}
.tableStyle span,.log_item_one span{
border:none;
}
...
...
WebContent/jwapp/pages/meeting/js/meetingTab.js
View file @
6304688f
...
...
@@ -140,7 +140,7 @@ function editRow(index) {
//加载修改子页面成功后的回调
function
updateUrlOnloadCallback
(
is_row
){
initDateBox
();
}
//保存
...
...
WebContent/jwapp/pages/vote/js/voteTab.js
View file @
6304688f
...
...
@@ -67,12 +67,7 @@ var is_column = [ [
},
{
field
:
'REALLY_END_TIME'
,
title
:
'实际结束时间'
,
width
:
150
,
align
:
'center'
},
{
field
:
'START_TIME'
,
title
:
'开始时间'
,
width
:
150
,
align
:
'center'
},
{
field
:
'END_TIME'
,
title
:
'结束时间'
,
width
:
150
,
align
:
'center'
},
{
field
:
'CREATE_ID'
,
title
:
'创建人'
,
width
:
80
,
align
:
'center'
},
{
field
:
'CREATE_TIME'
,
title
:
'创建时间'
,
width
:
150
,
align
:
'center'
},
{
field
:
'UPDATE_ID'
,
title
:
'修改人'
,
width
:
80
,
align
:
'center'
},
{
field
:
'UPDATE_TIME'
,
title
:
'修改时间'
,
width
:
150
,
align
:
'center'
},
{
field
:
'END_TIME'
,
title
:
'结束时间'
,
width
:
150
,
align
:
'center'
}
]
];
//列表加载完成回调
function
dataOnLoadSuccess
(){
...
...
src_jwapp/com/jw/app/log/action/actAction.java
View file @
6304688f
...
...
@@ -13,6 +13,7 @@ import com.gaowj.business.comp.BusinessManager;
import
com.gaowj.business.exception.BusinessException
;
import
com.gaowj.business.util.QueryParamUtil
;
import
com.gaowj.business.util.RequestUtils
;
import
com.gaowj.business.util.SessionUtil
;
import
com.gaowj.business.util.Status
;
import
com.gaowj.standard.utils.CacheKit
;
...
...
@@ -164,13 +165,16 @@ public class actAction extends BasicAction {
Map
<
String
,
Object
>
entity
=
RequestUtils
.
getUpdateFieldMap
(
request
,
RequestUtils
.
UPDATEDATAFIELDPREFIX
);
String
deletekey
=
(
String
)
entity
.
get
(
"CODE"
);
List
<
String
>
ListKey
=
QueryParamUtil
.
StringToList
(
deletekey
);
String
thiscode
=
(
String
)
entity
.
get
(
"THISCODE"
);
String
sessioncode
=
SessionUtil
.
getCode
();
try
{
business
.
delete_reply
(
ListKey
);
// 操作日志
SystemOpeBusiness
sysbusiness
=
BusinessManager
.
getBusiness
(
SystemOpeBusiness
.
class
);
sysbusiness
.
insert_logBusiness
(
"deleteLog"
,
""
+
ListKey
,
"删除测试数据"
,
deletekey
,
"多个流水号"
,
"logdemo1"
);
jsonObject
.
putAll
(
Status
.
getStatusSuccessMessage
(
"删除成功"
));
if
(
thiscode
==
null
||
thiscode
.
equals
(
sessioncode
))
{
business
.
delete_reply
(
ListKey
);
// 操作日志
SystemOpeBusiness
sysbusiness
=
BusinessManager
.
getBusiness
(
SystemOpeBusiness
.
class
);
sysbusiness
.
insert_logBusiness
(
"deleteLog"
,
""
+
ListKey
,
"删除测试数据"
,
deletekey
,
"多个流水号"
,
"logdemo1"
);
jsonObject
.
putAll
(
Status
.
getStatusSuccessMessage
(
"删除成功"
));
}
}
catch
(
Exception
e
)
{
jsonObject
.
putAll
(
Status
.
getStatusErrorMessage
(
"删除失败"
));
e
.
printStackTrace
();
...
...
Write
Preview
Markdown
is supported
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