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
67176f12
authored
Aug 21, 2020
by
lyl_task
Committed by
GitHub
Aug 21, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8 from lanyulei/dev
Dev
parents
7599dcd8
fe252c5a
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
4 additions
and
18 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/layout/components/Navbar.vue
src/components/wfd/components/DetailPanel/EndEventDetail.vue
View file @
67176f12
...
...
@@ -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 @
67176f12
...
...
@@ -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 @
67176f12
...
...
@@ -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 @
67176f12
...
...
@@ -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 @
67176f12
...
...
@@ -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 @
67176f12
...
...
@@ -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"
/>
...
...
src/layout/components/Navbar.vue
View file @
67176f12
...
...
@@ -17,7 +17,8 @@
<el-dropdown
class=
"avatar-container right-menu-item hover-effect"
trigger=
"click"
>
<div
class=
"avatar-wrapper"
>
<img
:src=
"avatar+'?imageView2/1/w/80/h/80'"
class=
"user-avatar"
>
<i
class=
"el-icon-caret-bottom"
/>
<span
style=
"font-size: 14px; position: relative; bottom: 15px"
>
{{ name }}
</span>
<i
class=
"el-icon-caret-bottom"
style=
"position: absolute; top: 13px"
/>
</div>
<el-dropdown-menu
slot=
"dropdown"
>
<router-link
to=
"/profile/index"
>
...
...
@@ -52,7 +53,8 @@ export default {
...
mapGetters
([
'sidebar'
,
'avatar'
,
'device'
'device'
,
'name'
])
},
methods
:
{
...
...
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