Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
test
Project
Project
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
邬友楠
test
Commits
91d4cb14
Commit
91d4cb14
authored
Apr 23, 2020
by
雍欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复问题:
1、组织管理中,设置主岗位,被删除的账号还出现在弹出的岗位选择列表中; 2、组织管理中,设置主岗位之后,页面没有自动刷新,需要手动刷新页面;
parent
279ef886
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
easy-search-opm.xml
...n/resources/config/content/easysearch/easy-search-opm.xml
+1
-0
Org.js
huigou-xt/src/main/webapp/system/opm/organization/Org.js
+4
-2
No files found.
huigou-uasp/src/main/resources/config/content/easysearch/easy-search-opm.xml
View file @
91d4cb14
...
...
@@ -7,6 +7,7 @@
<field
name=
"id"
code=
"id"
type=
'hidden'
/>
<field
name=
"姓名"
code=
"name"
width=
"120"
/>
<field
name=
"全路径"
code=
"fullName"
width=
"300"
/>
<condition
column=
"status"
name=
"status"
symbol=
"="
alias=
"t"
type=
"java.lang.Integer"
/>
</easy-search>
<easy-search
name=
"uiElement"
desc=
"权限字段选择"
...
...
huigou-xt/src/main/webapp/system/opm/organization/Org.js
View file @
91d4cb14
...
...
@@ -61,7 +61,7 @@ $(function () {
getParam
:
function
()
{
var
row
=
DataUtil
.
getUpdateRow
(
gridManager
);
if
(
!
row
)
return
false
;
return
{
personId
:
row
.
personId
};
return
{
personId
:
row
.
personId
,
status
:
1
};
},
title
:
"选择主岗位"
,
checkbox
:
false
,
...
...
@@ -80,7 +80,9 @@ $(function () {
var
params
=
{};
params
.
personId
=
personData
.
personId
;
params
.
personMemberId
=
mainOrgData
.
id
;
Public
.
ajax
(
web_app
.
name
+
"/org/changePersonMainOrg.ajax"
,
params
);
Public
.
ajax
(
web_app
.
name
+
"/org/changePersonMainOrg.ajax"
,
params
,
function
()
{
reloadGrid
();
});
return
true
;
}
});
...
...
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