Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
ferry_web
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jianan
ferry_web
Commits
8091ae19
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
+0
-16
src/components/wfd/components/DetailPanel/EndEventDetail.vue
+0
-1
src/components/wfd/components/DetailPanel/FlowDetail.vue
+0
-1
src/components/wfd/components/DetailPanel/HandleNodeDetail.vue
+0
-5
src/components/wfd/components/DetailPanel/ScriptTaskDetail.vue
+0
-2
src/components/wfd/components/DetailPanel/StartEventDetail.vue
+0
-1
src/components/wfd/components/DetailPanel/UserTaskDetail.vue
+0
-6
No files found.
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