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
9898a493
authored
Sep 16, 2021
by
lanyulei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 工单筛选支持申请人。
parent
b4b67963
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletions
src/views/process/list/components/search/index.vue
src/views/process/list/related.vue
src/views/process/list/components/search/index.vue
View file @
9898a493
...
...
@@ -10,6 +10,28 @@
@
keyup
.
enter
.
native=
"getList"
/>
</el-form-item>
<el-form-item
v-if=
"genre !== 'my-create'"
label=
"申请人"
>
<el-select
v-model=
"listQuery.creator"
filterable
clearable
remote
size=
"small"
reserve-keyword
placeholder=
"请输入当前处理人"
:remote-method=
"remoteUserList"
:loading=
"loading"
style=
"width: 150px"
@
change=
"getList"
>
<el-option
v-for=
"item in UserOptions"
:key=
"item.userId"
:label=
"item.nickName"
:value=
"item.userId"
/>
</el-select>
</el-form-item>
<el-form-item
v-if=
"genre !== 'upcoming'"
label=
"当前处理人"
>
<el-select
v-model=
"listQuery.processor"
...
...
src/views/process/list/related.vue
View file @
9898a493
...
...
@@ -3,7 +3,7 @@
<el-card
class=
"box-card"
>
<el-form
ref=
"listQuery"
:model=
"listQuery"
:inline=
"true"
>
<el-form
ref=
"listQuery"
:model=
"listQuery"
:inline=
"true"
>
<WorkOrderSearch
:genre=
"'
my-create
'"
@
handleSearch=
"handleSearch"
/>
<WorkOrderSearch
:genre=
"'
related
'"
@
handleSearch=
"handleSearch"
/>
</el-form>
</el-form>
...
...
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