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
41a0ba86
Commit
41a0ba86
authored
May 26, 2020
by
田熠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【流程任务维护】修改处理人列表中人员成员列进行选人时的问题
1.修改为使用orgTree的查询
parent
bee98ee6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
FlowTaskHandlerManage.js
...p/system/configtool/approvalRule/FlowTaskHandlerManage.js
+19
-2
No files found.
huigou-xt/src/main/webapp/system/configtool/approvalRule/FlowTaskHandlerManage.js
View file @
41a0ba86
...
...
@@ -227,7 +227,7 @@ $(document).ready(function() {
{
name
:
"orgName"
,
display
:
"机构名称"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
name
:
"deptName"
,
display
:
"部门名称"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
name
:
"positionName"
,
display
:
"岗位名称"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
name
:
"handlerName"
,
display
:
"人员成员"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
,
/*
{ name: "handlerName", display: "人员成员", width: 100, minWidth: 60, type: "string", align: "left",
editor: { type: 'select', data: { type:"sys", name: "orgSelect",
getParam: function(){
return { orgKindId: "psm" };
...
...
@@ -235,7 +235,24 @@ $(document).ready(function() {
deptId: "deptId", deptName: "deptName", positionId: "positionId", positionName: "positionName",
id: "handlerId", name: "handlerName" }
}
}},
} }}, */
{
name
:
"handlerName"
,
display
:
"人员成员"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
,
editor
:
{
type
:
'tree'
,
required
:
true
,
isLookup
:
false
,
beforeChange
:
function
(
values
,
editParm
)
{
var
type
=
values
[
'orgKindId'
];
if
(
type
!=
'psm'
)
{
return
false
;
}
return
true
;
},
data
:{
name
:
'org'
,
minWidth
:
300
,
searchType
:
'sys'
,
searchName
:
'orgSelect'
,
getParam
:
function
(){
return
{
orgRoot
:
'orgRoot'
,
org_kind_id
:
"ogn,dpt,pos,psm"
};
},
back
:{
fullId
:
"fullId"
,
fullName
:
"fullName"
,
orgId
:
"orgId"
,
orgName
:
"orgName"
,
deptId
:
"deptId"
,
deptName
:
"deptName"
,
positionId
:
"positionId"
,
positionName
:
"positionName"
,
id
:
"handlerId"
,
name
:
"handlerName"
}
}
}},
{
name
:
"status"
,
display
:
"状态"
,
width
:
60
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
,
editor
:
{
type
:
'combobox'
,
data
:
statusData
,
required
:
true
},
render
:
function
(
item
)
...
...
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