Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Chatopera OpenSource
/
ferry_web
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8091ae19
authored
Aug 21, 2020
by
Mr. Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复流程负责人搜索不生效的bug。
parent
7599dcd8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
16 deletions
src/components/wfd/components/DetailPanel/EndEventDetail.vue
src/components/wfd/components/DetailPanel/FlowDetail.vue
src/components/wfd/components/DetailPanel/HandleNodeDetail.vue
src/components/wfd/components/DetailPanel/ScriptTaskDetail.vue
src/components/wfd/components/DetailPanel/StartEventDetail.vue
src/components/wfd/components/DetailPanel/UserTaskDetail.vue
src/components/wfd/components/DetailPanel/EndEventDetail.vue
View file @
8091ae19
...
...
@@ -12,7 +12,6 @@
:value=
"model.task"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('task', e)"
>
<el-option
v-for=
"(taskValue, taskIndex) in tasks"
:key=
"taskIndex"
:label=
"taskValue.name"
:value=
"taskValue.full_name"
/>
...
...
src/components/wfd/components/DetailPanel/FlowDetail.vue
View file @
8091ae19
...
...
@@ -10,7 +10,6 @@
placeholder=
"选择流转属性"
:disabled=
"readOnly"
:value=
"model.flowProperties"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('flowProperties', e)"
>
<el-option
label=
"同意"
value=
"1"
/>
...
...
src/components/wfd/components/DetailPanel/HandleNodeDetail.vue
View file @
8091ae19
...
...
@@ -12,7 +12,6 @@
:value=
"model.task"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('task', e)"
>
<el-option
v-for=
"(taskValue, taskIndex) in tasks"
:key=
"taskIndex"
:label=
"taskValue.name"
:value=
"taskValue.full_name"
/>
...
...
@@ -42,7 +41,6 @@
:value=
"model.assignValue"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"user in users"
:key=
"user.userId"
:label=
"user.nickName===''?user.username:user.nickName"
:value=
"user.userId"
/>
...
...
@@ -57,7 +55,6 @@
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"group in groups"
:key=
"group.id"
:label=
"group.nickname===''?group.name:group.nickname"
:value=
"group.id"
/>
...
...
@@ -72,7 +69,6 @@
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
...
...
@@ -92,7 +88,6 @@
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"(item, index) in variableOptions"
:key=
"index"
:label=
"item.label"
:value=
"item.value"
/>
...
...
src/components/wfd/components/DetailPanel/ScriptTaskDetail.vue
View file @
8091ae19
...
...
@@ -10,7 +10,6 @@
placeholder=
"选择任务类型"
:disabled=
"readOnly"
:value=
"model.taskType"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('taskType', e)"
>
<el-option
label=
"任务"
value=
"task"
/>
...
...
@@ -38,7 +37,6 @@
:value=
"model.task"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('task', e)"
>
<el-option
v-for=
"(taskValue, taskIndex) in tasks"
:key=
"taskIndex"
:label=
"taskValue.name"
:value=
"taskValue.full_name"
/>
...
...
src/components/wfd/components/DetailPanel/StartEventDetail.vue
View file @
8091ae19
...
...
@@ -12,7 +12,6 @@
:value=
"model.task"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('task', e)"
>
<el-option
v-for=
"(taskValue, taskIndex) in tasks"
:key=
"taskIndex"
:label=
"taskValue.name"
:value=
"taskValue.full_name"
/>
...
...
src/components/wfd/components/DetailPanel/UserTaskDetail.vue
View file @
8091ae19
...
...
@@ -12,7 +12,6 @@
:value=
"model.task"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('task', e)"
>
<el-option
v-for=
"(taskValue, taskIndex) in tasks"
:key=
"taskIndex"
:label=
"taskValue.name"
:value=
"taskValue.full_name"
/>
...
...
@@ -42,7 +41,6 @@
:value=
"model.assignValue"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"user in users"
:key=
"user.userId"
:label=
"user.nickName===''?user.username:user.nickName"
:value=
"user.userId"
/>
...
...
@@ -57,7 +55,6 @@
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"group in groups"
:key=
"group.id"
:label=
"group.nickname===''?group.name:group.nickname"
:value=
"group.id"
/>
...
...
@@ -72,7 +69,6 @@
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"department in departments"
:key=
"department.id"
:label=
"department.name===''?department.nickname:department.name"
:value=
"department.id"
/>
...
...
@@ -86,8 +82,6 @@
:placeholder=
"i18n['userTask.assignType.variable.placeholder']"
:disabled=
"readOnly"
:multiple=
"true"
:filterable=
"true"
:filter-method=
"(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0"
@
change=
"(e) => onChange('assignValue', e)"
>
<el-option
v-for=
"(item, index) in variableOptions"
:key=
"index"
:label=
"item.label"
:value=
"item.value"
/>
...
...
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